Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / boringssl / win-x86_64 / crypto / modes / aesni-gcm-x86_64.asm
index 828be8d..d7fff6a 100644 (file)
@@ -1,19 +1,20 @@
-OPTION DOTNAME
-.text$ SEGMENT ALIGN(256) 'CODE'
+default        rel
+%define XMMWORD
+%define YMMWORD
+%define ZMMWORD
+section        .text code align=64
 
-PUBLIC aesni_gcm_encrypt
 
-aesni_gcm_encrypt      PROC PUBLIC
+global aesni_gcm_encrypt
+
+aesni_gcm_encrypt:
        xor     eax,eax
        DB      0F3h,0C3h               ;repret
-aesni_gcm_encrypt      ENDP
 
-PUBLIC aesni_gcm_decrypt
 
-aesni_gcm_decrypt      PROC PUBLIC
+global aesni_gcm_decrypt
+
+aesni_gcm_decrypt:
        xor     eax,eax
        DB      0F3h,0C3h               ;repret
-aesni_gcm_decrypt      ENDP
 
-.text$ ENDS
-END