forked from google/boringssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_signature_verify_cache.h
48 lines (31 loc) · 1.15 KB
/
mock_signature_verify_cache.h
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
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BSSL_PKI_MOCK_SIGNATURE_VERIFY_CACHE_H_
#define BSSL_PKI_MOCK_SIGNATURE_VERIFY_CACHE_H_
#include <stddef.h>
#include <string>
#include <string_view>
#include <unordered_map>
#include "signature_verify_cache.h"
namespace bssl {
// MockSignatureVerifyCache is an implementation of SignatureVerifyCache. It is
// intended only for testing of cache functionality.
class MockSignatureVerifyCache : public SignatureVerifyCache {
public:
MockSignatureVerifyCache();
~MockSignatureVerifyCache() override;
void Store(const std::string &key,
SignatureVerifyCache::Value value) override;
SignatureVerifyCache::Value Check(const std::string &key) override;
size_t CacheHits() { return hits_; }
size_t CacheMisses() { return misses_; }
size_t CacheStores() { return stores_; }
private:
std::unordered_map<std::string, SignatureVerifyCache::Value> cache_;
size_t hits_ = 0;
size_t misses_ = 0;
size_t stores_ = 0;
};
} // namespace bssl
#endif // BSSL_PKI_MOCK_PATH_BUILDER_DELEGATE_H_