blob: 2979d93b2701aeaf97ee721e9b29389b02d84164 [file] [log] [blame]
// Copyright 2013 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.
#ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_FAKE_CERTIFICATE_H_
#define CHROME_BROWSER_CHROMEOS_ATTESTATION_FAKE_CERTIFICATE_H_
#include <string>
#include "base/time/time.h"
namespace chromeos {
namespace attestation {
// Creates a self-signed |certificate| based on constant key material. The
// certificate |expiry| is relative to the current time. The certificate will
// be (or have been) valid from sometime before the current time or expiry,
// whichever is first. This is designed for use in unit tests and runs quickly.
// Returns true on success.
bool GetFakeCertificate(const base::TimeDelta& expiry,
std::string* certificate);
} // namespace attestation
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_FAKE_CERTIFICATE_H_