/external/openssl/crypto/des/ |
des_enc.c | 94 D_ENCRYPT(l,r, 0); /* 1 */ 95 D_ENCRYPT(r,l, 2); /* 2 */ 96 D_ENCRYPT(l,r, 4); /* 3 */ 97 D_ENCRYPT(r,l, 6); /* 4 */ 98 D_ENCRYPT(l,r, 8); /* 5 */ 99 D_ENCRYPT(r,l,10); /* 6 */ 100 D_ENCRYPT(l,r,12); /* 7 */ 101 D_ENCRYPT(r,l,14); /* 8 */ 102 D_ENCRYPT(l,r,16); /* 9 */ 103 D_ENCRYPT(r,l,18); /* 10 * [all...] |
fcrypt_b.c | 105 D_ENCRYPT(l,r,i+0); /* 1 */ 106 D_ENCRYPT(r,l,i+2); /* 2 */ 109 D_ENCRYPT(l,r, 0); /* 1 */ 110 D_ENCRYPT(r,l, 2); /* 2 */ 111 D_ENCRYPT(l,r, 4); /* 3 */ 112 D_ENCRYPT(r,l, 6); /* 4 */ 113 D_ENCRYPT(l,r, 8); /* 5 */ 114 D_ENCRYPT(r,l,10); /* 6 */ 115 D_ENCRYPT(l,r,12); /* 7 */ 116 D_ENCRYPT(r,l,14); /* 8 * [all...] |
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...] |
des_locl.h | 214 #define D_ENCRYPT(LL,R,S) { \ 242 #define D_ENCRYPT(LL,R,S) { \ 270 #define D_ENCRYPT(LL,R,S) { \ 288 #define D_ENCRYPT(LL,R,S) {\ 317 #define D_ENCRYPT(LL,R,S) {\ 348 #define D_ENCRYPT(LL,R,S) {\
|
/external/openssl/crypto/des/asm/ |
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
|
crypt586.pl | 41 &mov($trans,&wparam(1)); # reloaded with DES_SPtrans in D_ENCRYPT 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
|