| Index: net/cert/ct_verifier.h
|
| diff --git a/net/cert/ct_verifier.h b/net/cert/ct_verifier.h
|
| index 40631048ac32d21b41b5f220ee78e8c86f7aef4d..46a811a79601d40001756e61a3f5924bbcf3eb4a 100644
|
| --- a/net/cert/ct_verifier.h
|
| +++ b/net/cert/ct_verifier.h
|
| @@ -21,6 +21,7 @@ class CTLogVerifier;
|
| class X509Certificate;
|
|
|
| // Interface for verifying Signed Certificate Timestamps over a certificate.
|
| +// The only known (non-test) implementation currently is MultiLogCTVerifier.
|
| class NET_EXPORT CTVerifier {
|
| public:
|
| class NET_EXPORT Observer {
|
| @@ -30,6 +31,8 @@ class NET_EXPORT CTVerifier {
|
| // Signed Certificate Timestamp, |cert| is the certificate it applies to.
|
| // The certificate is needed to calculate the hash of the log entry,
|
| // necessary for checking inclusion in the log.
|
| + // Note: The observer (whose implementation is expected to exist outside
|
| + // net/) may store the observed |cert| and |sct|.
|
| virtual void OnSCTVerified(X509Certificate* cert,
|
| const ct::SignedCertificateTimestamp* sct) = 0;
|
| };
|
|
|