@ndiinginc/cert
v2.0.6
Published
<dl> <dt><a href="#generateRootCA">generateRootCA([commonName])</a> ⇒ <code>Object</code></dt> <dd><p>Menghasilkan sertifikat Certificate Authority (CA) root.</p> </dd> <dt><a href="#generateCertsForHostname">generateCertsForHostname(domain, rootCAConfig)
Downloads
448
Readme
cert
- cert
- .defaultAttrs : Array.<Object>
- .getExtensionSAN(domain) ⇒ Object
- .getKeysAndCert([serialNumber]) ⇒ Object
- .generateRootCA([commonName]) ⇒ Object
- .generateCertsForHostname(domain, rootCAConfig) ⇒ Object
- .setDefaultAttrs(attrs)
- .getCertsForHostname(domain) ⇒ Object
cert.defaultAttrs : Array.<Object>
Atribut default yang digunakan untuk sertifikat.
Kind: static property of cert
Properties
| Name | Type | Description | | --- | --- | --- | | name | string | Nama atribut. | | value | string | Nilai atribut. | | [shortName] | string | Nama pendek atribut (opsional). |
cert.getExtensionSAN(domain) ⇒ Object
Mengambil ekstensi Subject Alternative Name (SAN) berdasarkan domain.
Kind: static method of cert
Returns: Object - - Objek yang berisi nama dan alternatif nama.
| Param | Type | Description | | --- | --- | --- | | domain | string | Domain yang akan digunakan. |
cert.getKeysAndCert([serialNumber]) ⇒ Object
Menghasilkan pasangan kunci dan sertifikat.
Kind: static method of cert
Returns: Object - - Objek yang berisi kunci dan sertifikat.
| Param | Type | Description | | --- | --- | --- | | [serialNumber] | string | Nomor seri untuk sertifikat. |
cert.generateRootCA([commonName]) ⇒ Object
Menghasilkan Root Certificate Authority (CA).
Kind: static method of cert
Returns: Object - - Objek yang berisi kunci privat, kunci publik, dan sertifikat.
| Param | Type | Description | | --- | --- | --- | | [commonName] | string | Nama umum untuk sertifikat. |
cert.generateCertsForHostname(domain, rootCAConfig) ⇒ Object
Menghasilkan sertifikat untuk hostname tertentu.
Kind: static method of cert
Returns: Object - - Objek yang berisi kunci privat, kunci publik, dan sertifikat.
| Param | Type | Description | | --- | --- | --- | | domain | string | Nama domain untuk sertifikat. | | rootCAConfig | Object | Konfigurasi Root CA. |
cert.setDefaultAttrs(attrs)
Mengatur atribut default.
Kind: static method of cert
| Param | Type | Description | | --- | --- | --- | | attrs | Array.<Object> | Array atribut yang ingin disetel sebagai default. |
cert.getCertsForHostname(domain) ⇒ Object
Mengambil sertifikat untuk hostname tertentu.
Kind: static method of cert
Returns: Object - - Objek yang berisi kunci privat dan sertifikat.
| Param | Type | Description | | --- | --- | --- | | domain | string | Nama domain untuk sertifikat. |