Home
last modified time | relevance | path

Searched refs:D_ENCRYPT (Results 1 – 7 of 7) sorted by relevance

/external/openssl/crypto/des/
Ddes_enc.c94 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 …]
Dfcrypt_b.c105 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 …]
Ddes_opts.c124 #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 …]
Ddes_locl.h214 #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
DVERSION54 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/
Ddes-586.pl51 &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
Dcrypt586.pl50 &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