| /src/crypto/openssl/crypto/aes/ |
| H A D | aes_x86core.c | 597 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_set_decrypt_key() local 605 tp8 = ((tp4 & 0x7f7f7f7f) << 1) ^ ((m - (m >> 7)) & 0x1b1b1b1b); in AES_set_decrypt_key() 606 tp9 = tp8 ^ tp1; in AES_set_decrypt_key() 609 tpe = tp8 ^ tp4 ^ tp2; in AES_set_decrypt_key() 778 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_decrypt() local 787 tp8 = ((tp4 & 0x7f7f7f7f) << 1) ^ ((m - (m >> 7)) & 0x1b1b1b1b); in AES_decrypt() 788 tp9 = tp8 ^ tp1; in AES_decrypt() 791 tpe = tp8 ^ tp4 ^ tp2; in AES_decrypt() 824 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_decrypt() local 833 tp8 = ((tp4 & 0x7f7f7f7f) << 1) ^ ((m - (m >> 7)) & 0x1b1b1b1b); in AES_decrypt() [all …]
|
| H A D | aes_core.c | 3601 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; in AES_set_decrypt_key() local 3609 tp8 = ((tp4 & 0x7f7f7f7f) << 1) ^ ((m - (m >> 7)) & 0x1b1b1b1b); in AES_set_decrypt_key() 3610 tp9 = tp8 ^ tp1; in AES_set_decrypt_key() 3613 tpe = tp8 ^ tp4 ^ tp2; in AES_set_decrypt_key()
|
| /src/crypto/openssl/crypto/aes/asm/ |
| H A D | aes-x86_64.pl | 1569 my ($tp1,$tp2,$tp4,$tp8,$acc)=("%eax","%ebx","%edi","%edx","%r8d"); 1584 mov $acc,$tp8 1585 shr \$7,$tp8 1587 sub $tp8,$acc 1595 mov $acc,$tp8 1596 shr \$7,$tp8 1597 sub $tp8,$acc 1598 lea 0($tp4,$tp4),$tp8 1600 and \$0xfefefefe,$tp8 1602 xor $acc,$tp8 [all …]
|
| H A D | aes-586.pl | 1285 my $tp8 = $tbl; 1312 &lea ($tp8,&DWP(0,$tp4,$tp4)); 1314 &and ($tp8,0xfefefefe); 1318 &xor ($tp8,$acc); 1321 &xor ($tp2,$tp8); 1323 &xor ($tp4,$tp8); 1325 &xor ($s[$i],$tp8); # ^= tp8^(tp4^tp1)^(tp2^tp1) 1328 &rotl ($tp8,8); 1333 &xor ($s[$i],$tp8); # ^= ROTATE(tp8,8) 2881 { my ($i,$key,$tp1,$tp2,$tp4,$tp8) = @_; [all …]
|
| H A D | aes-mips.pl | 1666 my ($tp1,$tp2,$tp4,$tp8,$tp9,$tpb,$tpd,$tpe)=($a4,$a5,$a6,$a7,$s0,$s1,$s2,$s3); 1750 srl $tp8,$m,7 1752 subu $m,$tp8 1757 and $tp8,$tp4,$x7f7f7f7f 1759 addu $tp8,$tp8 # tp8<<1 1762 xor $tp8,$m 1764 xor $tp9,$tp8,$tp1 1765 xor $tpe,$tp8,$tp4
|
| /src/crypto/openssl/apps/ |
| H A D | pkcs12.c | 1078 const X509_SIG *tp8; in dump_certs_pkeys_bag() local 1082 tp8 = PKCS12_SAFEBAG_get0_pkcs8(bag); in dump_certs_pkeys_bag() 1083 X509_SIG_get0(tp8, &tp8alg, NULL); in dump_certs_pkeys_bag()
|