OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * SHA-1 in C | |
3 * By Steve Reid <sreid@sea-to-sky.net> | |
4 * 100% Public Domain | |
5 * | |
6 */ | |
7 | |
8 // Ported to C++, Google style, under namespace rtc. | |
9 | |
10 #ifndef WEBRTC_BASE_SHA1_H_ | |
11 #define WEBRTC_BASE_SHA1_H_ | |
12 | |
13 | |
14 // This header is deprecated and is just left here temporarily during | |
15 // refactoring. See https://bugs.webrtc.org/7634 for more details. | |
16 #include "webrtc/rtc_base/sha1.h" | |
17 | |
18 #endif // WEBRTC_BASE_SHA1_H_ | |
OLD | NEW |