1OPTION	DOTNAME
2.text$	SEGMENT ALIGN(256) 'CODE'
3
4PUBLIC	aesni_gcm_encrypt
5
6aesni_gcm_encrypt	PROC PUBLIC
7	xor	eax,eax
8	DB	0F3h,0C3h		;repret
9aesni_gcm_encrypt	ENDP
10
11PUBLIC	aesni_gcm_decrypt
12
13aesni_gcm_decrypt	PROC PUBLIC
14	xor	eax,eax
15	DB	0F3h,0C3h		;repret
16aesni_gcm_decrypt	ENDP
17
18.text$	ENDS
19END
20