/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.h | 105 * des_encrypt - Encrypt one block with DES 110 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
|
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_openssl.c | 152 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) function 169 DES_ENCRYPT);
|
/external/curl/lib/ |
curl_ntlm_core.c | 369 DESKEY(ks), DES_ENCRYPT); 373 DESKEY(ks), DES_ENCRYPT); 377 DESKEY(ks), DES_ENCRYPT); 381 des_encrypt(&des, 8, results, plaintext); 383 des_encrypt(&des, 8, results + 8, plaintext); 385 des_encrypt(&des, 8, results + 16, plaintext); 444 DESKEY(ks), DES_ENCRYPT); 448 DESKEY(ks), DES_ENCRYPT); 452 des_encrypt(&des, 8, lmbuffer, magic); 454 des_encrypt(&des, 8, lmbuffer + 8, magic) [all...] |