Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm

Issue 693893006: Roll BoringSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nasm
Patch Set: roll further Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm
diff --git a/third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm b/third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm
index 828be8d124e34eae465fa44d63da2d4c0238f788..d7fff6a9746737fd1401e6781799ed10bec3685e 100644
--- a/third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm
+++ b/third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm
@@ -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

Powered by Google App Engine
This is Rietveld 408576698