HomeSort by relevance Sort by last modified time
    Searched refs:tin (Results 1 - 7 of 7) sorted by null

  /external/openssl/crypto/des/
ede_cbcm_enc.c 84 DES_LONG tin[2]; local
98 tin[0]=m0;
99 tin[1]=m1;
100 DES_encrypt1(tin,ks3,1);
101 m0=tin[0];
102 m1=tin[1];
116 tin[0]=tin0;
117 tin[1]=tin1;
118 DES_encrypt1(tin,ks1,1);
119 tin[0]^=m0
    [all...]
ncbc_enc.c 77 DES_LONG tin[2]; local
90 tin0^=tout0; tin[0]=tin0;
91 tin1^=tout1; tin[1]=tin1;
92 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT);
93 tout0=tin[0]; l2c(tout0,out);
94 tout1=tin[1]; l2c(tout1,out);
99 tin0^=tout0; tin[0]=tin0;
100 tin1^=tout1; tin[1]=tin1;
101 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT);
102 tout0=tin[0]; l2c(tout0,out)
    [all...]
pcbc_enc.c 66 DES_LONG tin[2]; local
87 tin[0]=sin0^xor0;
88 tin[1]=sin1^xor1;
89 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
90 tout0=tin[0];
91 tout1=tin[1];
105 tin[0]=sin0;
106 tin[1]=sin1;
107 DES_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT);
108 tout0=tin[0]^xor0
    [all...]
cbc_cksm.c 67 DES_LONG tin[2]; local
83 tin0^=tout0; tin[0]=tin0;
84 tin1^=tout1; tin[1]=tin1;
85 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
87 tout0=tin[0];
88 tout1=tin[1];
95 tout0=tin0=tin1=tin[0]=tin[1]=0;
xcbc_enc.c 122 DES_LONG tin[2]; local
142 tin0^=tout0^inW0; tin[0]=tin0;
143 tin1^=tout1^inW1; tin[1]=tin1;
144 DES_encrypt1(tin,schedule,DES_ENCRYPT);
145 tout0=tin[0]^outW0; l2c(tout0,out);
146 tout1=tin[1]^outW1; l2c(tout1,out);
151 tin0^=tout0^inW0; tin[0]=tin0;
152 tin1^=tout1^inW1; tin[1]=tin1;
153 DES_encrypt1(tin,schedule,DES_ENCRYPT);
154 tout0=tin[0]^outW0; l2c(tout0,out)
    [all...]
des_enc.c 307 DES_LONG tin[2]; local
325 tin[0]=tin0;
326 tin[1]=tin1;
327 DES_encrypt3((DES_LONG *)tin,ks1,ks2,ks3);
328 tout0=tin[0];
329 tout1=tin[1];
340 tin[0]=tin0;
341 tin[1]=tin1;
342 DES_encrypt3((DES_LONG *)tin,ks1,ks2,ks3);
343 tout0=tin[0]
    [all...]
  /external/openssl/crypto/rc2/
rc2_cbc.c 68 unsigned long tin[2]; local
81 tin[0]=tin0;
82 tin[1]=tin1;
83 RC2_encrypt(tin,ks);
84 tout0=tin[0]; l2c(tout0,out);
85 tout1=tin[1]; l2c(tout1,out);
92 tin[0]=tin0;
93 tin[1]=tin1;
94 RC2_encrypt(tin,ks);
95 tout0=tin[0]; l2c(tout0,out)
    [all...]

Completed in 60 milliseconds