An object describing a single X.509 certificate .
The
SecurityInfo
object returned from the
webRequest.getSecurityInfo()
API includes a
certificates
property which is an array of these objects.
Values of this type are objects. They contain the following properties:
fingerprint
对象
. An object with the following properties:
sha1
字符串
. SHA-1 hash of the certificate's DER encoding.
sha256
字符串
. SHA-256 hash of the certificate's DER encoding.
isBuiltInRoot
布尔
.
true
if the certificate is one of the trust roots installed in the browser,
false
否则。
issuer
字符串
. Name of the organization that issued this certificate, represented as a Distinguished Name and formatted as a comma-separated list of Relative Distinguished Names, each of the form "type=value".
For example: "CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US".
rawDER
数组
of
Number
。若
webRequest.getSecurityInfo()
was called with the
rawDER
option present and set to
true
, this will contain the DER encoding of the certificate.
serialNumber
字符串
. The certificate's
serial number
.
subject
字符串
. Name of the organization that issued this certificate, represented as a Distinguished Name and formatted as a comma-separated list of Relative Distinguished Names, each of the form "type=value".
For example: "CN=*.cdn.mozilla.net,O=Mozilla Corporation,L=Mountain View,ST=California,C=US".
subjectPublicKeyInfoDigest
对象
. An object containing the following properties:
sha256
字符串
. Base64 encoded SHA-256 hash of the DER-encoded
public key info
.
validity
对象
. Validity period for the certificate. An object containing the following properties:
start
Number
. The start of the certificate's validity period, in
milliseconds since the epoch
.
end
Number
. The end of the certificate's validity period, in
milliseconds since the epoch
.
BCD tables only load in the browser
最后修改: , 由 MDN 贡献者