blob: f00dc85f7cd051a7e4b913742c161224fbf4fa5c [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_CERTIFICATE_CHECKER_MOCK_H_
#define UPDATE_ENGINE_CERTIFICATE_CHECKER_MOCK_H_
#include <gmock/gmock.h>
#include <openssl/ssl.h>
#include "update_engine/certificate_checker.h"
namespace chromeos_update_engine {
class OpenSSLWrapperMock : 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_CERTIFICATE_CHECKER_MOCK_H_