1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_CERT_CT_LOG_VERIFIER_H_
6 #define NET_CERT_CT_LOG_VERIFIER_H_
10 #include "base/gtest_prod_util.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string_piece.h"
13 #include "net/base/net_export.h"
14 #include "net/cert/signed_certificate_timestamp.h"
17 // Forward declare the crypto types to avoid having to include the full
19 #if defined(USE_OPENSSL)
20 typedef struct evp_pkey_st EVP_PKEY
;
22 typedef struct SECKEYPublicKeyStr SECKEYPublicKey
;
28 struct SignedTreeHead
;
31 // Class for verifying Signed Certificate Timestamps (SCTs) provided by a
32 // specific log (whose identity is provided during construction).
33 class NET_EXPORT CTLogVerifier
{
35 // Creates a new CTLogVerifier that will verify SignedCertificateTimestamps
36 // using |public_key|, which is a DER-encoded SubjectPublicKeyInfo.
37 // If |public_key| refers to an unsupported public key, returns NULL.
38 // |description| is a textual description of the log.
39 static scoped_ptr
<CTLogVerifier
> Create(const base::StringPiece
& public_key
,
40 const base::StringPiece
& description
,
41 const base::StringPiece
& url
);
45 // Returns the log's key ID (RFC6962, Section 3.2)
46 const std::string
& key_id() const { return key_id_
; }
47 // Returns the log's human-readable description.
48 const std::string
& description() const { return description_
; }
50 // Verifies that |sct| contains a valid signature for |entry|.
51 bool Verify(const ct::LogEntry
& entry
,
52 const ct::SignedCertificateTimestamp
& sct
);
54 // Returns true if the signature in |signed_tree_head| verifies.
55 bool VerifySignedTreeHead(const ct::SignedTreeHead
& signed_tree_head
);
58 FRIEND_TEST_ALL_PREFIXES(CTLogVerifierTest
, VerifySignature
);
60 CTLogVerifier(const base::StringPiece
& description
, const GURL
& url
);
62 // Performs crypto-library specific initialization.
63 bool Init(const base::StringPiece
& public_key
);
65 // Performs the underlying verification using the selected public key. Note
66 // that |signature| contains the raw signature data (eg: without any
67 // DigitallySigned struct encoding).
68 bool VerifySignature(const base::StringPiece
& data_to_sign
,
69 const base::StringPiece
& signature
);
71 // Returns true if the signature and hash algorithms in |signature|
72 // match those of the log
73 bool SignatureParametersMatch(const ct::DigitallySigned
& signature
);
76 std::string description_
;
78 ct::DigitallySigned::HashAlgorithm hash_algorithm_
;
79 ct::DigitallySigned::SignatureAlgorithm signature_algorithm_
;
81 #if defined(USE_OPENSSL)
82 EVP_PKEY
* public_key_
;
84 SECKEYPublicKey
* public_key_
;
90 #endif // NET_CERT_CT_LOG_VERIFIER_H_