blob: e85dc4daec3693a3755c54de2853524affd246b2 (
plain)
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
|
// 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.
#include "net/base/keygen_handler.h"
#include "base/logging.h"
namespace net {
KeygenHandler::Cache* KeygenHandler::Cache::GetInstance() {
return Singleton<Cache>::get();
}
void KeygenHandler::Cache::Insert(const std::string& public_key_info,
const KeyLocation& location) {
AutoLock lock(lock_);
DCHECK(!public_key_info.empty()) << "Only insert valid public key structures";
cache_[public_key_info] = location;
}
bool KeygenHandler::Cache::Find(const std::string& public_key_info,
KeyLocation* location) {
AutoLock lock(lock_);
KeyLocationMap::iterator iter = cache_.find(public_key_info);
if (iter == cache_.end())
return false;
*location = iter->second;
return true;
}
} // namespace net
|