summaryrefslogtreecommitdiffstats
path: root/base/hmac_nss.cc
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-02 21:01:35 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-02 21:01:35 +0000
commitdb163f8b20b0a6c512e1ad21bab9af15a8c9c218 (patch)
treed996613019feaafbddcb3652afd665d18cb34377 /base/hmac_nss.cc
parentdd6335b14a4bb6c466f782b54783c73938d4e4ca (diff)
downloadchromium_src-db163f8b20b0a6c512e1ad21bab9af15a8c9c218.zip
chromium_src-db163f8b20b0a6c512e1ad21bab9af15a8c9c218.tar.gz
chromium_src-db163f8b20b0a6c512e1ad21bab9af15a8c9c218.tar.bz2
Implement HMAC-SHA-256.
R=albertb BUG=none TEST=added new HMAC unit tests Review URL: http://codereview.chromium.org/1513012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/hmac_nss.cc')
-rw-r--r--base/hmac_nss.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/hmac_nss.cc b/base/hmac_nss.cc
index b3c0c67..2ca4f67 100644
--- a/base/hmac_nss.cc
+++ b/base/hmac_nss.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -32,6 +32,7 @@ HMAC::HMAC(HashAlgorithm hash_alg)
break;
default:
NOTREACHED() << "Unsupported hash algorithm";
+ break;
}
}