Skip to content

Commit 347a17f

Browse files
committed
wolfcrypt/src/aes_asm.asm: fix missed _AESNI suffixing.
1 parent a10260c commit 347a17f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

wolfcrypt/src/aes_asm.asm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ AES_CBC_decrypt_AESNI_by8 ENDP
875875
; const ,unsigned char*KS
876876
; int nr]
877877
; */
878-
; . globl AES_ECB_encrypt
878+
; . globl AES_ECB_encrypt_AESNI
879879
AES_ECB_encrypt_AESNI PROC
880880
;# parameter 1: rdi
881881
;# parameter 2: rsi
@@ -1057,14 +1057,14 @@ EECB_END_4:
10571057
AES_ECB_encrypt_AESNI ENDP
10581058

10591059
; /*
1060-
; AES_ECB_decrypt[const ,unsigned char*in
1060+
; AES_ECB_decrypt_AESNI[const ,unsigned char*in
10611061
; unsigned ,char*out
10621062
; unsigned ,long length
10631063
; const ,unsigned char*KS
10641064
; int nr]
10651065
; */
1066-
; . globl AES_ECB_decrypt
1067-
AES_ECB_decrypt PROC
1066+
; . globl AES_ECB_decrypt_AESNI
1067+
AES_ECB_decrypt_AESNI PROC
10681068
;# parameter 1: rdi
10691069
;# parameter 2: rsi
10701070
;# parameter 3: rdx
@@ -1250,7 +1250,7 @@ AES_ECB_decrypt_AESNI ENDP
12501250
; unsigned char*key_schedule]/
12511251
; */
12521252
; . align 16,0x90
1253-
; . globl AES_128_Key_Expansion
1253+
; . globl AES_128_Key_Expansion_AESNI
12541254
AES_128_Key_Expansion_AESNI PROC
12551255
;# parameter 1: rdi
12561256
;# parameter 2: rsi
@@ -1328,7 +1328,7 @@ AES_128_Key_Expansion_AESNI ENDP
13281328
; void ,AES_192_Key_Expansion_AESNI[const unsigned char*userkey
13291329
; unsigned char*key]
13301330
; */
1331-
; . globl AES_192_Key_Expansion
1331+
; . globl AES_192_Key_Expansion_AESNI
13321332
AES_192_Key_Expansion_AESNI PROC
13331333
;# parameter 1: rdi
13341334
;# parameter 2: rsi
@@ -1432,7 +1432,7 @@ AES_192_Key_Expansion_AESNI ENDP
14321432
; void ,AES_256_Key_Expansion_AESNI[const unsigned char*userkey
14331433
; unsigned char*key]
14341434
; */
1435-
; . globl AES_256_Key_Expansion
1435+
; . globl AES_256_Key_Expansion_AESNI
14361436
AES_256_Key_Expansion_AESNI PROC
14371437
;# parameter 1: rdi
14381438
;# parameter 2: rsi

0 commit comments

Comments
 (0)