Vitaly Buka | 9ba72a8 | 2015-08-06 17:36:17 -0700 | [diff] [blame] | 1 | // Copyright 2012 The Chromium OS Authors. All rights reserved. |
Vitaly Buka | 6ca6a23 | 2015-08-06 17:32:43 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 5 | #ifndef LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_ |
| 6 | #define LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_ |
Vitaly Buka | 6ca6a23 | 2015-08-06 17:32:43 -0700 | [diff] [blame] | 7 | |
| 8 | #include <string> |
| 9 | |
Vitaly Buka | 6ca6a23 | 2015-08-06 17:32:43 -0700 | [diff] [blame] | 10 | namespace crypto { |
| 11 | |
| 12 | // These functions perform SHA-256 operations. |
| 13 | // |
| 14 | // Functions for SHA-384 and SHA-512 can be added when the need arises. |
| 15 | |
| 16 | static const size_t kSHA256Length = 32; // Length in bytes of a SHA-256 hash. |
| 17 | |
| 18 | // Computes the SHA-256 hash of the input string 'str' and stores the first |
| 19 | // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32, |
| 20 | // only 32 bytes (the full hash) are stored in the 'output' buffer. |
Vitaly Buka | 0d50107 | 2015-08-18 18:09:46 -0700 | [diff] [blame] | 21 | void SHA256HashString(const std::string& str, uint8_t* output, size_t len); |
Vitaly Buka | 6ca6a23 | 2015-08-06 17:32:43 -0700 | [diff] [blame] | 22 | |
| 23 | // Convenience version of the above that returns the result in a 32-byte |
| 24 | // string. |
Vitaly Buka | 0d50107 | 2015-08-18 18:09:46 -0700 | [diff] [blame] | 25 | std::string SHA256HashString(const std::string& str); |
Vitaly Buka | 6ca6a23 | 2015-08-06 17:32:43 -0700 | [diff] [blame] | 26 | |
| 27 | } // namespace crypto |
| 28 | |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 29 | #endif // LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_ |