HomeSort by relevance Sort by last modified time
    Searched defs:DES_encrypt2 (Results 1 - 4 of 4) sorted by null

  /external/openssl/crypto/des/asm/
des-586.S 1059 .globl DES_encrypt2
1060 .type DES_encrypt2,@function
1062 DES_encrypt2:
1101 .size DES_encrypt2,.-.L_DES_encrypt2_begin
    [all...]
  /external/openssl/crypto/des/
des_enc.c 156 void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
253 DES_encrypt2((DES_LONG *)data,ks1,DES_ENCRYPT);
254 DES_encrypt2((DES_LONG *)data,ks2,DES_DECRYPT);
255 DES_encrypt2((DES_LONG *)data,ks3,DES_ENCRYPT);
273 DES_encrypt2((DES_LONG *)data,ks3,DES_DECRYPT);
274 DES_encrypt2((DES_LONG *)data,ks2,DES_ENCRYPT);
275 DES_encrypt2((DES_LONG *)data,ks1,DES_DECRYPT);
des_opts.c 126 #define DES_encrypt2 des_encrypt2_u4_cisc_idx
138 #undef DES_encrypt2
142 #define DES_encrypt2 des_encrypt2_u16_cisc_idx
154 #undef DES_encrypt2
158 #define DES_encrypt2 des_encrypt2_u4_risc1_idx
174 #undef DES_encrypt2
178 #define DES_encrypt2 des_encrypt2_u4_risc2_idx
190 #undef DES_encrypt2
194 #define DES_encrypt2 des_encrypt2_u16_risc1_idx
206 #undef DES_encrypt2
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/des/
des.c 418 static void DES_encrypt2(uint32_t *data, const DES_key_schedule *ks, int enc) {
487 DES_encrypt2((uint32_t *)data, ks1, DES_ENCRYPT);
488 DES_encrypt2((uint32_t *)data, ks2, DES_DECRYPT);
489 DES_encrypt2((uint32_t *)data, ks3, DES_ENCRYPT);
507 DES_encrypt2((uint32_t *)data, ks3, DES_DECRYPT);
508 DES_encrypt2((uint32_t *)data, ks2, DES_ENCRYPT);
509 DES_encrypt2((uint32_t *)data, ks1, DES_DECRYPT);

Completed in 114 milliseconds