| Index: webrtc/base/sha1.h
|
| diff --git a/webrtc/base/sha1.h b/webrtc/base/sha1.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fde3e598c3d8062a7ef29218b87bace7562322b9
|
| --- /dev/null
|
| +++ b/webrtc/base/sha1.h
|
| @@ -0,0 +1,18 @@
|
| +/*
|
| + * SHA-1 in C
|
| + * By Steve Reid <sreid@sea-to-sky.net>
|
| + * 100% Public Domain
|
| + *
|
| +*/
|
| +
|
| +// Ported to C++, Google style, under namespace rtc.
|
| +
|
| +#ifndef WEBRTC_BASE_SHA1_H_
|
| +#define WEBRTC_BASE_SHA1_H_
|
| +
|
| +
|
| +// This header is deprecated and is just left here temporarily during
|
| +// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
| +#include "webrtc/rtc_base/sha1.h"
|
| +
|
| +#endif // WEBRTC_BASE_SHA1_H_
|
|
|