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

  /external/chromium/net/http/
des.h 24 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash);
des_unittest.cc 28 DESEncrypt(des_known_key, des_ecb_known_plaintext, ciphertext);
46 DESEncrypt(key, plaintext, ciphertext);
des.cc 24 // The Mac and Windows (CryptoAPI) versions of DESEncrypt are our own code.
25 // DESSetKeyParity, DESMakeKey, and the Linux (NSS) version of DESEncrypt are
92 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
105 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
162 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
173 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash) {
http_auth_handler_ntlm_portable.cc 283 DESEncrypt(k1, LM_MAGIC, hash);
284 DESEncrypt(k2, LM_MAGIC, hash + 8);
333 DESEncrypt(k1, challenge, response);
334 DESEncrypt(k2, challenge, response + 8);
335 DESEncrypt(k3, challenge, response + 16);

Completed in 528 milliseconds