Index: base/hmac_mac.cc |
=================================================================== |
--- base/hmac_mac.cc (revision 0) |
+++ base/hmac_mac.cc (revision 0) |
@@ -0,0 +1,52 @@ |
+// Copyright (c) 2008 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "base/hmac.h" |
+ |
+#include <CommonCrypto/CommonHMAC.h> |
+ |
+#include "base/logging.h" |
+ |
+namespace base { |
+ |
+HMAC::HMAC(HashAlgorithm hash_alg, const unsigned char* key, int key_length) |
+ : hash_alg_(hash_alg), |
+ key_(reinterpret_cast<const char*>(key), key_length) { |
+} |
+ |
+HMAC::~HMAC() { |
+ // Zero out key copy. |
+ key_.assign(key_.length(), std::string::value_type()); |
+ key_.clear(); |
+ key_.reserve(0); |
+} |
+ |
+bool HMAC::Sign(const std::string& data, |
+ unsigned char* digest, |
+ int digest_length) { |
+ CCHmacAlgorithm algorithm; |
+ int algorithm_digest_length; |
+ switch (hash_alg_) { |
+ case SHA1: |
+ algorithm = kCCHmacAlgSHA1; |
+ algorithm_digest_length = CC_SHA1_DIGEST_LENGTH; |
+ break; |
+ default: |
+ NOTREACHED(); |
+ return false; |
+ } |
+ |
+ if (digest_length < algorithm_digest_length) { |
+ DCHECK(false); |
+ return false; |
+ } |
+ |
+ CCHmac(algorithm, |
+ key_.data(), key_.length(), data.data(), data.length(), |
+ digest); |
+ |
+ return true; |
+} |
+ |
+} // namespace base |
Property changes on: base/hmac_mac.cc |
___________________________________________________________________ |
Name: svn:eol-style |
+ LF |