1 //==- SHA1.h - SHA1 implementation for LLVM --*- C++ -*-==//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 // This code is taken from public domain
9 // (http://oauth.googlecode.com/svn/code/c/liboauth/src/sha1.c)
10 // and modified by wrapping it in a C++ interface for LLVM,
11 // and removing unnecessary code.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_SUPPORT_SHA1_H
16 #define LLVM_SUPPORT_SHA1_H
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/StringRef.h"
25 template <typename T
> class ArrayRef
;
27 /// A class that wrap the SHA1 algorithm.
32 /// Reinitialize the internal state
36 void update(ArrayRef
<uint8_t> Data
);
39 void update(StringRef Str
) {
40 update(ArrayRef
<uint8_t>((uint8_t *)const_cast<char *>(Str
.data()),
44 /// Return a reference to the current raw 160-bits SHA1 for the digested data
45 /// since the last call to init(). This call will add data to the internal
46 /// state and as such is not suited for getting an intermediate result
50 /// Return a reference to the current raw 160-bits SHA1 for the digested data
51 /// since the last call to init(). This is suitable for getting the SHA1 at
52 /// any time without invalidating the internal state so that more calls can be
56 /// Returns a raw 160-bit SHA1 hash for the given data.
57 static std::array
<uint8_t, 20> hash(ArrayRef
<uint8_t> Data
);
60 /// Define some constants.
61 /// "static constexpr" would be cleaner but MSVC does not support it yet.
62 enum { BLOCK_LENGTH
= 64 };
63 enum { HASH_LENGTH
= 20 };
68 uint8_t C
[BLOCK_LENGTH
];
69 uint32_t L
[BLOCK_LENGTH
/ 4];
71 uint32_t State
[HASH_LENGTH
/ 4];
76 // Internal copy of the hash, populated and accessed on calls to result()
77 uint32_t HashResult
[HASH_LENGTH
/ 4];
80 void writebyte(uint8_t data
);
82 void addUncounted(uint8_t data
);
86 } // end llvm namespace