diff options
author | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 16:01:06 +0000 |
---|---|---|
committer | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 16:01:06 +0000 |
commit | f70d75703faad10cdb415446f481b55a4b4cf80e (patch) | |
tree | 2db421e26d0bf55befc882f780fdf284513b0133 /net/cert/ct_serialization.h | |
parent | ee26d9e0b0f310c7f027ea503620ca54cb23c0d6 (diff) | |
download | chromium_src-f70d75703faad10cdb415446f481b55a4b4cf80e.zip chromium_src-f70d75703faad10cdb415446f481b55a4b4cf80e.tar.gz chromium_src-f70d75703faad10cdb415446f481b55a4b4cf80e.tar.bz2 |
CT: First step towards supporting Certificate Transparency in Chrome.
This patch adds Signed Certificate Timestamp (SCT) encoding/decoding.
SCT is the Certificate Transparency (CT) structure containing a proof
of a public log's commitment to adding a certificate to its public
repository.
The next patches would be extracting the SCTs when embedded in
certificates and verifying the signature from the SCT over them.
BUG=309578
Review URL: https://codereview.chromium.org/37633002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232131 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/cert/ct_serialization.h')
-rw-r--r-- | net/cert/ct_serialization.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/net/cert/ct_serialization.h b/net/cert/ct_serialization.h new file mode 100644 index 0000000..4fc74f7 --- /dev/null +++ b/net/cert/ct_serialization.h @@ -0,0 +1,72 @@ +// 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 NET_CERT_CT_SERIALIZATION_H_ +#define NET_CERT_CT_SERIALIZATION_H_ + +#include <string> +#include <vector> + +#include "base/strings/string_piece.h" +#include "net/base/net_export.h" +#include "net/cert/signed_certificate_timestamp.h" + +namespace net { + +// Utility functions for encoding/decoding structures used by Certificate +// Transparency to/from the TLS wire format encoding. +namespace ct { + +// If |input.signature_data| is less than kMaxSignatureLength, encodes the +// |input| to |output| and returns true. Otherwise, returns false. +NET_EXPORT_PRIVATE bool EncodeDigitallySigned(const DigitallySigned& input, + std::string* output); + +// Reads and decodes a DigitallySigned object from |input|. +// The bytes read from |input| are discarded (i.e. |input|'s prefix removed) +// Returns true and fills |output| if all fields can be read, false otherwise. +NET_EXPORT_PRIVATE bool DecodeDigitallySigned(base::StringPiece* input, + DigitallySigned* output); + +// Encodes the |input| LogEntry to |output|. Returns true if the entry size +// does not exceed allowed size in RFC6962, false otherwise. +NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input, + std::string* output); + +// Encodes the data signed by a Signed Certificate Timestamp (SCT) into +// |output|. The signature included in the SCT is then verified over these +// bytes. +// |timestamp| timestamp from the SCT. +// |serialized_log_entry| the log entry signed by the SCT. +// |extensions| CT extensions. +// Returns true if the extensions' length does not exceed +// kMaxExtensionsLength, false otherwise. +NET_EXPORT_PRIVATE bool EncodeV1SCTSignedData( + const base::Time& timestamp, + const std::string& serialized_log_entry, + const std::string& extensions, + std::string* output); + +// Decode a list of Signed Certificate Timestamps +// (SignedCertificateTimestampList as defined in RFC6962): from a single +// string in |input| to a vector of individually-encoded SCTs |output|. +// This list is typically obtained from the CT extension in a certificate. +// Returns true if the list could be read and decoded successfully, false +// otherwise (note that the validity of each individual SCT should be checked +// separately). +NET_EXPORT_PRIVATE bool DecodeSCTList(base::StringPiece* input, + std::vector<base::StringPiece>* output); + +// Decodes a single SCT from |input| to |output|. +// Returns true if all fields in the SCT could be read and decoded, false +// otherwise. +NET_EXPORT_PRIVATE bool DecodeSignedCertificateTimestamp( + base::StringPiece* input, + ct::SignedCertificateTimestamp* output); + +} // namespace ct + +} // namespace net + +#endif // NET_CERT_CT_SERIALIZATION_H_ |