summaryrefslogtreecommitdiffstats
path: root/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm
blob: 828be8d124e34eae465fa44d63da2d4c0238f788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
OPTION	DOTNAME
.text$	SEGMENT ALIGN(256) 'CODE'

PUBLIC	aesni_gcm_encrypt

aesni_gcm_encrypt	PROC PUBLIC
	xor	eax,eax
	DB	0F3h,0C3h		;repret
aesni_gcm_encrypt	ENDP

PUBLIC	aesni_gcm_decrypt

aesni_gcm_decrypt	PROC PUBLIC
	xor	eax,eax
	DB	0F3h,0C3h		;repret
aesni_gcm_decrypt	ENDP

.text$	ENDS
END