1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// 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 <nss.h>
#include <pk11pub.h>
#include "base/logging.h"
#include "base/nss_init.h"
#include "base/scoped_ptr.h"
namespace {
template <typename Type, void (*Destroyer)(Type*)>
struct NSSDestroyer {
void operator()(Type* ptr) const {
if (ptr)
Destroyer(ptr);
}
};
void DestroyContext(PK11Context* context) {
PK11_DestroyContext(context, PR_TRUE);
}
// Define some convenient scopers around NSS pointers.
typedef scoped_ptr_malloc<
PK11SlotInfo, NSSDestroyer<PK11SlotInfo, PK11_FreeSlot> > ScopedNSSSlot;
typedef scoped_ptr_malloc<
PK11SymKey, NSSDestroyer<PK11SymKey, PK11_FreeSymKey> > ScopedNSSSymKey;
typedef scoped_ptr_malloc<
PK11Context, NSSDestroyer<PK11Context, DestroyContext> > ScopedNSSContext;
} // namespace
namespace base {
struct HMACPlatformData {
ScopedNSSSlot slot_;
ScopedNSSSymKey sym_key_;
};
HMAC::HMAC(HashAlgorithm hash_alg, const unsigned char* key, int key_length)
: hash_alg_(hash_alg), plat_(new HMACPlatformData()) {
DCHECK(hash_alg_ == SHA1);
base::EnsureNSSInit();
plat_->slot_.reset(PK11_GetBestSlot(CKM_SHA_1_HMAC, NULL));
CHECK(plat_->slot_.get());
SECItem key_item;
key_item.type = siBuffer;
key_item.data = const_cast<unsigned char*>(key); // NSS API isn't const.
key_item.len = key_length;
plat_->sym_key_.reset(PK11_ImportSymKey(plat_->slot_.get(),
CKM_SHA_1_HMAC,
PK11_OriginUnwrap,
CKA_SIGN,
&key_item,
NULL));
CHECK(plat_->sym_key_.get());
}
HMAC::~HMAC() {
}
bool HMAC::Sign(const std::string& data,
unsigned char* digest,
int digest_length) {
SECItem param = { siBuffer, NULL, 0 };
ScopedNSSContext context(PK11_CreateContextBySymKey(CKM_SHA_1_HMAC,
CKA_SIGN,
plat_->sym_key_.get(),
¶m));
if (!context.get()) {
NOTREACHED();
return false;
}
if (PK11_DigestBegin(context.get()) != SECSuccess) {
NOTREACHED();
return false;
}
if (PK11_DigestOp(context.get(),
reinterpret_cast<const unsigned char*>(data.data()),
data.length()) != SECSuccess) {
NOTREACHED();
return false;
}
unsigned int len = 0;
if (PK11_DigestFinal(context.get(),
digest, &len, digest_length) != SECSuccess) {
NOTREACHED();
return false;
}
return true;
}
} // namespace base
|