blob: 5731062dc211784e3b72879004bdddd609d3e2fb [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UPDATE_ENGINE_MOCK_CERTIFICATE_CHECKER_H_
#define UPDATE_ENGINE_MOCK_CERTIFICATE_CHECKER_H_
#include <gmock/gmock.h>
#include <openssl/ssl.h>
#include "update_engine/certificate_checker.h"
namespace chromeos_update_engine {
class MockOpenSSLWrapper : public OpenSSLWrapper {
public:
MOCK_CONST_METHOD4(GetCertificateDigest,
bool(X509_STORE_CTX* x509_ctx,
int* out_depth,
unsigned int* out_digest_length,
unsigned char* out_digest));
};
} // namespace chromeos_update_engine
#endif // UPDATE_ENGINE_MOCK_CERTIFICATE_CHECKER_H_