| Index: third_party/WebKit/Source/devtools/protocol.json
|
| diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
|
| index 658784236072b4a9ed913943fd02ec647760c6ec..2158f696dd4135f13ee8dc3fd3a6d73c8bb6c215 100644
|
| --- a/third_party/WebKit/Source/devtools/protocol.json
|
| +++ b/third_party/WebKit/Source/devtools/protocol.json
|
| @@ -1294,6 +1294,22 @@
|
| { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
|
| ]
|
| },
|
| + {
|
| + "id": "SignedCertificateTimestamp",
|
| + "type" : "object",
|
| + "description": "Details of a signed certificate timestamp (SCT).",
|
| + "properties": [
|
| + { "name": "status", "type": "string", "description": "Validation status." },
|
| + { "name": "origin", "type": "string", "description": "Origin." },
|
| + { "name": "version", "type": "string", "description": "Version." },
|
| + { "name": "logDescription", "type": "string", "description": "Log name / description." },
|
| + { "name": "logId", "type": "string", "description": "Log ID." },
|
| + { "name": "timestamp", "$ref": "Timestamp", "description": "Issuance date." },
|
| + { "name": "hashAlgorithm", "type": "string", "description": "Hash algorithm." },
|
| + { "name": "signatureAlgorithm", "type": "string", "description": "Signature algorithm." },
|
| + { "name": "signatureData", "type": "string", "description": "Signature data" }
|
| + ]
|
| + },
|
| {
|
| "id": "SecurityDetails",
|
| "type": "object",
|
| @@ -1304,7 +1320,8 @@
|
| { "name": "cipher", "type": "string", "description": "Cipher name." },
|
| { "name": "mac", "type": "string", "optional": true, "description": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
|
| { "name": "certificateId", "$ref": "CertificateId", "description": "Certificate ID value." },
|
| - { "name": "certificateValidationDetails", "$ref": "CertificateValidationDetails", "optional": true, "description": "Validation details for the request's certficate." }
|
| + { "name": "certificateValidationDetails", "$ref": "CertificateValidationDetails", "optional": true, "description": "Validation details for the request's certficate." },
|
| + { "name": "signedCertificateTimestampList", "type": "array", "items": { "$ref": "SignedCertificateTimestamp" }, "description": "List of signed certificate timestamps (SCTs)." }
|
| ]
|
| },
|
| {
|
|
|