/external/wpa_supplicant_8/src/crypto/ |
crypto_none.c | 21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function
|
ms_funcs.c | 148 des_encrypt(challenge, password_hash, response); 149 des_encrypt(challenge, password_hash + 7, response + 8); 153 des_encrypt(challenge, zpwd, response + 16); 494 des_encrypt(password_hash, block, cypher); 495 des_encrypt(password_hash + 8, block + 7, cypher + 8);
|
crypto_gnutls.c | 33 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function
|
crypto_libtomcrypt.c | 38 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function
|
des-internal.c | 399 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function
|
crypto.h | 105 * des_encrypt - Encrypt one block with DES 110 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
|
crypto_openssl.c | 152 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function 169 DES_ENCRYPT);
|
/external/boringssl/src/crypto/perlasm/ |
readme | 122 &cbc("des_ncbc_encrypt","des_encrypt","des_encrypt",0,4,5,3,5,-1);
|
cbc.pl | 12 # des_encrypt((DES_LONG *)tin,schedule,DES_ENCRYPT); 15 #&cbc("des_ncbc_encrypt","des_encrypt",0); 18 #&cbc("des_ncbc_encrypt","des_encrypt","des_encrypt",
|
/external/curl/lib/ |
curl_ntlm_core.c | 374 DESKEY(ks), DES_ENCRYPT); 378 DESKEY(ks), DES_ENCRYPT); 382 DESKEY(ks), DES_ENCRYPT); 386 des_encrypt(&des, 8, results, plaintext); 388 des_encrypt(&des, 8, results + 8, plaintext); 390 des_encrypt(&des, 8, results + 16, plaintext); 449 DESKEY(ks), DES_ENCRYPT); 453 DESKEY(ks), DES_ENCRYPT); 457 des_encrypt(&des, 8, lmbuffer, magic); 459 des_encrypt(&des, 8, lmbuffer + 8, magic) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/ |
des_crypt.h | 44 #define DES_ENCRYPT (0*DES_DIRMASK) /* Encrypt */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/ |
des_crypt.h | 44 #define DES_ENCRYPT (0*DES_DIRMASK) /* Encrypt */
|
/external/boringssl/src/include/openssl/ |
des.h | 82 #define DES_ENCRYPT 1
|
/external/boringssl/src/crypto/des/ |
des.c | 511 DES_encrypt2((uint32_t *)data, ks1, DES_ENCRYPT); 513 DES_encrypt2((uint32_t *)data, ks3, DES_ENCRYPT); 531 DES_encrypt2((uint32_t *)data, ks2, DES_ENCRYPT); 579 DES_encrypt1((uint32_t *)tin, schedule, DES_ENCRYPT); 591 DES_encrypt1((uint32_t *)tin, schedule, DES_ENCRYPT);
|