Roll src/third_party/WebKit c80a38a:cb58f27 (svn 201050:201051)
[chromium-blink-merge.git] / crypto / hmac_openssl.cc
blobef20290e223200959674baf2d5f4db647b9d2cba
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
3 // found in the LICENSE file.
5 #include "crypto/hmac.h"
7 #include <openssl/hmac.h>
9 #include <algorithm>
10 #include <vector>
12 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/stl_util.h"
15 #include "crypto/openssl_util.h"
17 namespace crypto {
19 struct HMACPlatformData {
20 std::vector<unsigned char> key;
23 HMAC::HMAC(HashAlgorithm hash_alg) : hash_alg_(hash_alg) {
24 // Only SHA-1 and SHA-256 hash algorithms are supported now.
25 DCHECK(hash_alg_ == SHA1 || hash_alg_ == SHA256);
28 bool HMAC::Init(const unsigned char* key, size_t key_length) {
29 // Init must not be called more than once on the same HMAC object.
30 DCHECK(!plat_);
31 plat_.reset(new HMACPlatformData());
32 plat_->key.assign(key, key + key_length);
33 return true;
36 HMAC::~HMAC() {
37 if (plat_) {
38 // Zero out key copy.
39 plat_->key.assign(plat_->key.size(), 0);
40 STLClearObject(&plat_->key);
44 bool HMAC::Sign(const base::StringPiece& data,
45 unsigned char* digest,
46 size_t digest_length) const {
47 DCHECK(plat_); // Init must be called before Sign.
49 ScopedOpenSSLSafeSizeBuffer<EVP_MAX_MD_SIZE> result(digest, digest_length);
50 return !!::HMAC(hash_alg_ == SHA1 ? EVP_sha1() : EVP_sha256(),
51 vector_as_array(&plat_->key), plat_->key.size(),
52 reinterpret_cast<const unsigned char*>(data.data()),
53 data.size(), result.safe_buffer(), NULL);
56 } // namespace crypto