Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Side by Side Diff: base/sha2.h

Issue 6729002: Base: A few more files using BASE_API (for base.dll) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/sha1.h ('k') | base/string_split.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_SHA2_H_ 5 #ifndef BASE_SHA2_H_
6 #define BASE_SHA2_H_ 6 #define BASE_SHA2_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/base_api.h"
12
11 namespace base { 13 namespace base {
12 14
13 // These functions perform SHA-256 operations. 15 // These functions perform SHA-256 operations.
14 // 16 //
15 // Functions for SHA-384 and SHA-512 can be added when the need arises. 17 // Functions for SHA-384 and SHA-512 can be added when the need arises.
16 18
17 enum { 19 enum {
18 SHA256_LENGTH = 32 // length in bytes of a SHA-256 hash 20 SHA256_LENGTH = 32 // length in bytes of a SHA-256 hash
19 }; 21 };
20 22
21 // Computes the SHA-256 hash of the input string 'str' and stores the first 23 // Computes the SHA-256 hash of the input string 'str' and stores the first
22 // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32, 24 // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32,
23 // only 32 bytes (the full hash) are stored in the 'output' buffer. 25 // only 32 bytes (the full hash) are stored in the 'output' buffer.
24 void SHA256HashString(const std::string& str, void* output, size_t len); 26 BASE_API void SHA256HashString(const std::string& str,
27 void* output, size_t len);
25 28
26 // Convenience version of the above that returns the result in a 32-byte 29 // Convenience version of the above that returns the result in a 32-byte
27 // string. 30 // string.
28 std::string SHA256HashString(const std::string& str); 31 BASE_API std::string SHA256HashString(const std::string& str);
29 32
30 } // namespace base 33 } // namespace base
31 34
32 #endif // BASE_SHA2_H_ 35 #endif // BASE_SHA2_H_
OLDNEW
« no previous file with comments | « base/sha1.h ('k') | base/string_split.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698