here the result with the source code packages.
I hope I did it right.
(gdb) frame 0
#0 aesni_ecb_encrypt () at crypto/aes/aesni-x86_64.s:524
warning: Source file is more recent than executable.
524 movl 240(%rcx),%eax
(gdb) list
519 aesni_ecb_encrypt:
520 .cfi_startproc
521 andq $-16,%rdx
522 jz .Lecb_ret
523
524 movl 240(%rcx),%eax
525 movups (%rcx),%xmm0
526 movq %rcx,%r11
527 movl %eax,%r10d
528 testl %r8d,%r8d
(gdb) frame 1
#1 0x00007f6d1b5d5917 in aesni_ecb_cipher (len=16, in=0x7f6d17780fc0 "\036\234\364\354\062\311\005\316\036۫\023\065N\235\305l\001\306-", out=0x7f6d17d97aa8 "", ctx=0x7f6d177810a8) at ../crypto/evp/e_aes.c:319
319 aesni_ecb_encrypt(in, out, len, &EVP_C_DATA(EVP_AES_KEY,ctx)->ks.ks,
(gdb) list
314 size_t bl = EVP_CIPHER_CTX_block_size(ctx);
315
316 if (len < bl)
317 return 1;
318
319 aesni_ecb_encrypt(in, out, len, &EVP_C_DATA(EVP_AES_KEY,ctx)->ks.ks,
320 EVP_CIPHER_CTX_encrypting(ctx));
321
322 return 1;
323 }
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.