@@ -1647,7 +1647,7 @@ be passed instead of a public key.
16471647
16481648## Class: ` X509Certificate `
16491649<!-- YAML
1650- added: REPLACEME
1650+ added: v15.6.0
16511651-->
16521652
16531653Encapsulates an X509 certificate and provides read-only access to
@@ -1663,23 +1663,23 @@ console.log(x509.subject);
16631663
16641664### ` new X509Certificate(buffer) `
16651665<!-- YAML
1666- added: REPLACEME
1666+ added: v15.6.0
16671667-->
16681668
16691669* ` buffer ` {string|TypedArray|Buffer|DataView} A PEM or DER encoded
16701670 X509 Certificate.
16711671
16721672### ` x509.ca `
16731673<!-- YAML
1674- added: REPLACEME
1674+ added: v15.6.0
16751675-->
16761676
16771677* Type: {boolean} Will be ` true ` if this is a Certificate Authority (ca)
16781678 certificate.
16791679
16801680### ` x509.checkEmail(email[, options]) `
16811681<!-- YAML
1682- added: REPLACEME
1682+ added: v15.6.0
16831683-->
16841684
16851685* ` email ` {string}
@@ -1696,7 +1696,7 @@ Checks whether the certificate matches the given email address.
16961696
16971697### ` x509.checkHost(name[, options]) `
16981698<!-- YAML
1699- added: REPLACEME
1699+ added: v15.6.0
17001700-->
17011701
17021702* ` name ` {string}
@@ -1713,7 +1713,7 @@ Checks whether the certificate matches the given host name.
17131713
17141714### ` x509.checkIP(ip[, options]) `
17151715<!-- YAML
1716- added: REPLACEME
1716+ added: v15.6.0
17171717-->
17181718
17191719* ` ip ` {string}
@@ -1730,7 +1730,7 @@ Checks whether the certificate matches the given IP address (IPv4 or IPv6).
17301730
17311731### ` x509.checkIssued(otherCert) `
17321732<!-- YAML
1733- added: REPLACEME
1733+ added: v15.6.0
17341734-->
17351735
17361736* ` otherCert ` {X509Certificate}
@@ -1740,7 +1740,7 @@ Checks whether this certificate was issued by the given `otherCert`.
17401740
17411741### ` x509.checkPrivateKey(privateKey) `
17421742<!-- YAML
1743- added: REPLACEME
1743+ added: v15.6.0
17441744-->
17451745
17461746* ` privateKey ` {KeyObject} A private key.
@@ -1751,7 +1751,7 @@ the given private key.
17511751
17521752### ` x509.fingerprint `
17531753<!-- YAML
1754- added: REPLACEME
1754+ added: v15.6.0
17551755-->
17561756
17571757* Type: {string}
@@ -1760,7 +1760,7 @@ The SHA-1 fingerprint of this certificate.
17601760
17611761### ` x509.fingerprint256 `
17621762<!-- YAML
1763- added: REPLACEME
1763+ added: v15.6.0
17641764-->
17651765
17661766* Type: {string}
@@ -1769,7 +1769,7 @@ The SHA-256 fingerprint of this certificate.
17691769
17701770### ` x509.infoAccess `
17711771<!-- YAML
1772- added: REPLACEME
1772+ added: v15.6.0
17731773-->
17741774
17751775* Type: {string}
@@ -1778,7 +1778,7 @@ The information access content of this certificate.
17781778
17791779### ` x509.issuer `
17801780<!-- YAML
1781- added: REPLACEME
1781+ added: v15.6.0
17821782-->
17831783
17841784* Type: {string}
@@ -1787,7 +1787,7 @@ The issuer identification included in this certificate.
17871787
17881788### ` x509.keyUsage `
17891789<!-- YAML
1790- added: REPLACEME
1790+ added: v15.6.0
17911791-->
17921792
17931793* Type: {string[ ] }
@@ -1796,7 +1796,7 @@ An array detailing the key usages for this certificate.
17961796
17971797### ` x509.publicKey `
17981798<!-- YAML
1799- added: REPLACEME
1799+ added: v15.6.0
18001800-->
18011801
18021802* Type: {KeyObject}
@@ -1805,7 +1805,7 @@ The public key {KeyObject} for this certificate.
18051805
18061806### ` x509.raw `
18071807<!-- YAML
1808- added: REPLACEME
1808+ added: v15.6.0
18091809-->
18101810
18111811* Type: {Buffer}
@@ -1814,7 +1814,7 @@ A `Buffer` containing the DER encoding of this certificate.
18141814
18151815### ` x509.serialNumber `
18161816<!-- YAML
1817- added: REPLACEME
1817+ added: v15.6.0
18181818-->
18191819
18201820* Type: {string}
@@ -1823,7 +1823,7 @@ The serial number of this certificate.
18231823
18241824### ` x509.subject `
18251825<!-- YAML
1826- added: REPLACEME
1826+ added: v15.6.0
18271827-->
18281828
18291829* Type: {string}
@@ -1832,7 +1832,7 @@ The complete subject of this certificate.
18321832
18331833### ` x509.subjectAltName `
18341834<!-- YAML
1835- added: REPLACEME
1835+ added: v15.6.0
18361836-->
18371837
18381838* Type: {string}
@@ -1841,7 +1841,7 @@ The subject alternative name specified for this certificate.
18411841
18421842### ` x509.toJSON() `
18431843<!-- YAML
1844- added: REPLACEME
1844+ added: v15.6.0
18451845-->
18461846
18471847* Type: {string}
@@ -1852,7 +1852,7 @@ certificate.
18521852
18531853### ` x509.toLegacyObject() `
18541854<!-- YAML
1855- added: REPLACEME
1855+ added: v15.6.0
18561856-->
18571857
18581858* Type: {Object}
@@ -1862,7 +1862,7 @@ Returns information about this certificate using the legacy
18621862
18631863### ` x509.toString() `
18641864<!-- YAML
1865- added: REPLACEME
1865+ added: v15.6.0
18661866-->
18671867
18681868* Type: {string}
@@ -1871,7 +1871,7 @@ Returns the PEM-encoded certificate.
18711871
18721872### ` x509.validFrom `
18731873<!-- YAML
1874- added: REPLACEME
1874+ added: v15.6.0
18751875-->
18761876
18771877* Type: {string}
@@ -1880,7 +1880,7 @@ The date/time from which this certificate is considered valid.
18801880
18811881### ` x509.validTo `
18821882<!-- YAML
1883- added: REPLACEME
1883+ added: v15.6.0
18841884-->
18851885
18861886* Type: {string}
@@ -1889,7 +1889,7 @@ The date/time until which this certificate is considered valid.
18891889
18901890### ` x509.verify(publicKey) `
18911891<!-- YAML
1892- added: REPLACEME
1892+ added: v15.6.0
18931893-->
18941894
18951895* ` publicKey ` {KeyObject} A public key.
@@ -3415,7 +3415,7 @@ console.log(`The dice rolled: ${n}`);
34153415
34163416### ` crypto.randomUUID([options]) `
34173417<!-- YAML
3418- added: REPLACEME
3418+ added: v15.6.0
34193419-->
34203420
34213421* ` options ` {Object}
@@ -3547,7 +3547,7 @@ console.log(key2.toString('hex')); // '3745e48...aa39b34'
35473547
35483548### ` crypto.secureHeapUsed() `
35493549<!-- YAML
3550- added: REPLACEME
3550+ added: v15.6.0
35513551-->
35523552
35533553* Returns: {Object}
0 commit comments