Csr Node.js Reference Documentation
Csr
Current Version: 10.1.2
A class for generating Certificate Signing Requests (CSR) or for reading an existing CSR.
This class is introduced in Chilkat v9.5.0.65
Object Creation
var obj = new chilkat.Csr();
Properties
CommonName
· string
The common name of the certificate to be generated. For SSL/TLS certificates, this would be the domain name. For email certificates this would be the email address.
It is the value for "CN" in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.3")
This property is required for a CSR.
topCompany
· string
The company or organization name for the certificate to be generated.
It is the value for "O" in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.10")
This property is optional. It may left empty.
topCompanyDivision
· string
The company division or organizational unit name for the certificate to be generated.
It is the value for "OU" in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.11")
This property is optional. It may left empty.
topCountry
· string
The two-letter uppercase country abbreviation, such as "US", for the certificate to be generated.
It is the value for "C" in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.6")
This property is optional. It may left empty.
topDebugLogFilePath
· string
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
EmailAddress
· string
The email address for the certificate to be generated.
It is the value for "E" in the certificate's Subject's distinguished name (DN). (This is the value for OID "1.2.840.113549.1.9.1")
This property is optional. It may left empty.
topHashAlgorithm
· string
The hash algorithm to be used when creating the CSR. The default is SHA256. Can be set to SHA1, SHA384, SHA256, or SHA512.
topLastErrorHtml
· string, read-only
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastErrorText
· string, read-only
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
LastErrorXml
· string, read-only
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastMethodSuccess
· boolean
Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.
topLocality
· string
The locality (city or town) name for the certificate to be generated.
It is the value for "L" in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.7")
This property is optional. It may left empty.
topMgfHashAlg
· string
If the private key is RSA and PssPadding equals true (RSASSA-PSS padding is used for the RSA signature), then this property controls the MGF hash algorithm used in the RSASSA-PSS padding. The default is "sha256". Can be set to "sha256", "sha384", or "sha512".
topPssPadding
· boolean
If _CKTRUE_, and if the private key is RSA, then uses RSASSA-PSS padding for the signature.
topState
· string
The state or province for the certificate to be generated.
It is the value for "S" (or "ST") in the certificate's Subject's distinguished name (DN). (This is the value for OID "2.5.4.8")
This property is optional. It may left empty.
topVerboseLogging
· boolean
If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
topVersion
· string, read-only
Methods
AddSan
· Returns Boolean (true for success, false for failure).
· sanType String
· sanValue String
Adds a SAN value (Subject Alternative Name) to the CSR to be generated. This method can be called multiple times -- one per subject alternative name to be added.
The sanType specifies the type of SAN, and can be one of the following strings:
- otherName
- rfc822Name
- dnsName
- x400Address
- directoryName
- ediPartyName
- uniformResourceIndicator
- IPAddress
- registeredID
The sanValue is the value. For example, if the sanType is "dsnName", the sanValue might be "example.com". If the sanType is "IPAddress", then the sanValue might be "69.12.122.63".
Returns true for success, false for failure.
topGenCsrBd
· Returns Boolean (true for success, false for failure).
· privKey PrivateKey
· csrData BinData
Generate a CSR and return the binary DER in csrData. The privKey can be an RSA or ECDSA private key.
Returns true for success, false for failure.
GenCsrPem
· Returns a String.
· privKey PrivateKey
Generate a CSR and return it as a PEM string. The privKey can be an RSA or ECDSA private key.
Returns null on failure
GetExtensionRequest
· Returns Boolean (true for success, false for failure).
· extensionReqXml Xml
Gets the 1.2.840.113549.1.9.14 extensionRequest from the previously loaded CSR. The extensionReqXml will be loaded with the extension request XML if one exists.
Returns true for success, false for failure.
GetPublicKey
· Returns Boolean (true for success, false for failure).
· pubkey PublicKey
GetSans
· Returns Boolean (true for success, false for failure).
· sans StringTable
Gets the SANS (Subject Alternative Names) of the currently loaded CSR. The information is written to the passed-in sans object.
Returns true for success, false for failure.
topGetSubjectField
· Returns a String.
· oid String
Gets a subject field by OID, such as "2.5.4.9". See http://www.alvestrand.no/objectid/2.5.4.html for OID values and meanings.
Returns null on failure
LoadCsrPem
· Returns Boolean (true for success, false for failure).
· csrPemStr String
Loads this CSR object with a CSR PEM. All properties are set to the values found within the CSR.
Returns true for success, false for failure.
SetExtensionRequest
· Returns Boolean (true for success, false for failure).
· extensionReqXml Xml
Adds a 1.2.840.113549.1.9.14 extensionRequest to the CSR. The extensionReqXml contains the ASN.1 in XML format of the extension request to be added.
Returns true for success, false for failure.
SetSubjectField
· Returns Boolean (true for success, false for failure).
· oid String
· value String
· asnType String
Sets a subject field by OID, such as "2.5.4.9". See http://www.alvestrand.no/objectid/2.5.4.html for OID values and meanings.
The asnType can be "UTF8String", "IA5String", or "PrintableString". If you have no specific requirement, or don't know, choose "UTF8String".
Returns true for success, false for failure.
topVerifyCsr
· Returns Boolean (true for success, false for failure).
Verify the signature in the CSR. Return true if the signature is valid.
Returns true for success, false for failure.
top