/external/openssl/crypto/des/ |
D | des_enc.c | 94 D_ENCRYPT(l,r, 0); /* 1 */ in DES_encrypt1() 95 D_ENCRYPT(r,l, 2); /* 2 */ in DES_encrypt1() 96 D_ENCRYPT(l,r, 4); /* 3 */ in DES_encrypt1() 97 D_ENCRYPT(r,l, 6); /* 4 */ in DES_encrypt1() 98 D_ENCRYPT(l,r, 8); /* 5 */ in DES_encrypt1() 99 D_ENCRYPT(r,l,10); /* 6 */ in DES_encrypt1() 100 D_ENCRYPT(l,r,12); /* 7 */ in DES_encrypt1() 101 D_ENCRYPT(r,l,14); /* 8 */ in DES_encrypt1() 102 D_ENCRYPT(l,r,16); /* 9 */ in DES_encrypt1() 103 D_ENCRYPT(r,l,18); /* 10 */ in DES_encrypt1() [all …]
|
D | fcrypt_b.c | 105 D_ENCRYPT(l,r,i+0); /* 1 */ in fcrypt_body() 106 D_ENCRYPT(r,l,i+2); /* 2 */ in fcrypt_body() 109 D_ENCRYPT(l,r, 0); /* 1 */ in fcrypt_body() 110 D_ENCRYPT(r,l, 2); /* 2 */ in fcrypt_body() 111 D_ENCRYPT(l,r, 4); /* 3 */ in fcrypt_body() 112 D_ENCRYPT(r,l, 6); /* 4 */ in fcrypt_body() 113 D_ENCRYPT(l,r, 8); /* 5 */ in fcrypt_body() 114 D_ENCRYPT(r,l,10); /* 6 */ in fcrypt_body() 115 D_ENCRYPT(l,r,12); /* 7 */ in fcrypt_body() 116 D_ENCRYPT(r,l,14); /* 8 */ in fcrypt_body() [all …]
|
D | des_opts.c | 124 #undef D_ENCRYPT 136 #undef D_ENCRYPT 152 #undef D_ENCRYPT 172 #undef D_ENCRYPT 188 #undef D_ENCRYPT 204 #undef D_ENCRYPT 224 #undef D_ENCRYPT 240 #undef D_ENCRYPT 256 #undef D_ENCRYPT 276 #undef D_ENCRYPT [all …]
|
D | des_locl.h | 214 #define D_ENCRYPT(LL,R,S) { \ macro 242 #define D_ENCRYPT(LL,R,S) { \ macro 270 #define D_ENCRYPT(LL,R,S) { \ macro 288 #define D_ENCRYPT(LL,R,S) {\ macro 317 #define D_ENCRYPT(LL,R,S) {\ macro 348 #define D_ENCRYPT(LL,R,S) {\ macro
|
D | VERSION | 54 I've finally removed one of the shifts in D_ENCRYPT. This 59 Noticed that in the D_ENCRYPT() macro, we can just do L^=(..)^(..)^.. 171 my D_ENCRYPT macro in crypt() had an un-necessary variable. 315 Added an alternative version of the D_ENCRYPT macro in 339 Changed D_ENCRYPT so that the rotation of R occurs outside of
|
/external/openssl/crypto/des/asm/ |
D | des-586.pl | 51 &D_ENCRYPT(0,$L,$R,0,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 53 &D_ENCRYPT(1,$R,$L,2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 67 &D_ENCRYPT($i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 69 &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 88 &D_ENCRYPT(0,$L,$R,-2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 90 &D_ENCRYPT(1,$R,$L,-4,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 104 &D_ENCRYPT(15-$i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 106 &D_ENCRYPT(15-$i+1,$R,$L,($i-1)*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); 203 sub D_ENCRYPT subroutine
|
D | crypt586.pl | 50 &D_ENCRYPT($i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx"); 54 &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$trans,"eax","ebx","ecx","edx"); 77 sub D_ENCRYPT subroutine
|