chromium/third_party/boringssl/src/pki/mock_signature_verify_cache.cc

// 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.

#include "mock_signature_verify_cache.h"

#include <algorithm>

BSSL_NAMESPACE_BEGIN

MockSignatureVerifyCache::MockSignatureVerifyCache() = default;

MockSignatureVerifyCache::~MockSignatureVerifyCache() = default;

void MockSignatureVerifyCache::Store(const std::string &key,
                                     SignatureVerifyCache::Value value) {}

SignatureVerifyCache::Value MockSignatureVerifyCache::Check(
    const std::string &key) {}

BSSL_NAMESPACE_END