blob: 8e053889d2cd4da005e59561b60a7c86fed6259a [file] [log] [blame]
Vitaly Buka9ba72a82015-08-06 17:36:17 -07001// Copyright 2012 The Chromium OS Authors. All rights reserved.
Vitaly Buka6ca6a232015-08-06 17:32:43 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Vitaly Buka9e5b6832015-10-14 15:57:14 -07005#ifndef LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_
6#define LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_
Vitaly Buka6ca6a232015-08-06 17:32:43 -07007
8#include <string>
9
Vitaly Buka6ca6a232015-08-06 17:32:43 -070010namespace 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
16static 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 Buka0d501072015-08-18 18:09:46 -070021void SHA256HashString(const std::string& str, uint8_t* output, size_t len);
Vitaly Buka6ca6a232015-08-06 17:32:43 -070022
23// Convenience version of the above that returns the result in a 32-byte
24// string.
Vitaly Buka0d501072015-08-18 18:09:46 -070025std::string SHA256HashString(const std::string& str);
Vitaly Buka6ca6a232015-08-06 17:32:43 -070026
27} // namespace crypto
28
Vitaly Buka9e5b6832015-10-14 15:57:14 -070029#endif // LIBWEAVE_THIRD_PARTY_CHROMIUM_SHA2_H_