1default rel 2%define XMMWORD 3%define YMMWORD 4%define ZMMWORD 5section .text code align=64 6 7 8global aesni_gcm_encrypt 9 10aesni_gcm_encrypt: 11 xor eax,eax 12 DB 0F3h,0C3h ;repret 13 14 15global aesni_gcm_decrypt 16 17aesni_gcm_decrypt: 18 xor eax,eax 19 DB 0F3h,0C3h ;repret 20 21