Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: net/ntlm/md4.h

Issue 2873673002: Add unit tests for NTLMv1 portable implementation (Closed)
Patch Set: Rebase Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/ntlm/des_unittest.cc ('k') | net/ntlm/md4.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This is mozilla/security/manager/ssl/src/md4.h, CVS rev. 1.1, with trivial 1 // This is mozilla/security/manager/ssl/src/md4.h, CVS rev. 1.1, with trivial
2 // changes to port it to our source tree. 2 // changes to port it to our source tree.
3 // 3 //
4 // WARNING: MD4 is cryptographically weak. Do not use MD4 except in NTLM 4 // WARNING: MD4 is cryptographically weak. Do not use MD4 except in NTLM
5 // authentication. 5 // authentication.
6 6
7 /* vim:set ts=2 sw=2 et cindent: */ 7 /* vim:set ts=2 sw=2 et cindent: */
8 /* ***** BEGIN LICENSE BLOCK ***** 8 /* ***** BEGIN LICENSE BLOCK *****
9 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 9 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
10 * 10 *
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 * NOTE: this interface is designed for relatively small buffers. A streaming 65 * NOTE: this interface is designed for relatively small buffers. A streaming
66 * interface would make more sense if that were a requirement. Currently, this 66 * interface would make more sense if that were a requirement. Currently, this
67 * is good enough for the applications we care about. 67 * is good enough for the applications we care about.
68 */ 68 */
69 void MD4Sum(const uint8_t* input, uint32_t inputLen, uint8_t* result); 69 void MD4Sum(const uint8_t* input, uint32_t inputLen, uint8_t* result);
70 70
71 } // namespace weak_crypto 71 } // namespace weak_crypto
72 } // namespace net 72 } // namespace net
73 73
74 #endif // NET_HTTP_MD4_H_ 74 #endif // NET_HTTP_MD4_H_
OLDNEW
« no previous file with comments | « net/ntlm/des_unittest.cc ('k') | net/ntlm/md4.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698