E-Payment Integrator 2016 Node.js Edition
E-Payment Integrator 2016 Node.js Edition
Questions / Feedback?

SSLCertStoreType Property

The type of certificate store for this certificate.

Syntax

 retail.getSSLCertStoreType([callback])
 retail.setSSLCertStoreType( SSLCertStoreType, [callback])

Possible Values

  0 (cstUser), 
  1 (cstMachine), 
  2 (cstPFXFile), 
  3 (cstPFXBlob), 
  4 (cstJKSFile), 
  5 (cstJKSBlob), 
  6 (cstPEMKeyFile), 
  7 (cstPEMKeyBlob), 
  8 (cstPublicKeyFile), 
  9 (cstPublicKeyBlob), 
  10 (cstSSHPublicKeyBlob), 
  11 (cstP7BFile), 
  12 (cstP7BBlob), 
  13 (cstSSHPublicKeyFile), 
  14 (cstPPKFile), 
  15 (cstPPKBlob), 
  16 (cstXMLFile), 
  17 (cstXMLBlob), 
  18 (cstJWKFile), 
  19 (cstJWKBlob)

Default Value

0


Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for the getSSLCertStoreType([callback]) method is defined as:

function(err, data){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'data' is the value returned by the method.

The callback for the setSSLCertStoreType([callback]) method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

The type of certificate store for this certificate.

This property can take one of the following values:

0 (cstUser - default)For Windows, this specifies that the certificate store is a certificate store owned by the current user. Note: this store type is not available in Java.
1 (cstMachine)For Windows, this specifies that the certificate store is a machine store. Note: this store type is not available in Java.
2 (cstPFXFile)The certificate store is the name of a PFX (PKCS12) file containing certificates.
3 (cstPFXBlob)The certificate store is a string (binary or base64-encoded) representing a certificate store in PFX (PKCS12) format.
4 (cstJKSFile)The certificate store is the name of a Java Key Store (JKS) file containing certificates. Note: this store type is only available in Java.
5 (cstJKSBlob)The certificate store is a string (binary or base64-encoded) representing a certificate store in Java Key Store (JKS) format. Note: this store type is only available in Java.
6 (cstPEMKeyFile)The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate.
7 (cstPEMKeyBlob)The certificate store is a string (binary or base64-encoded) that contains a private key and an optional certificate.
8 (cstPublicKeyFile)The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate.
9 (cstPublicKeyBlob)The certificate store is a string (binary or base64-encoded) that contains a PEM- or DER-encoded public key certificate.
10 (cstSSHPublicKeyBlob)The certificate store is a string (binary or base64-encoded) that contains an SSH-style public key.
11 (cstP7BFile)The certificate store is the name of a PKCS7 file containing certificates.
12 (cstP7BBlob)The certificate store is a string (binary) representing a certificate store in PKCS7 format.
13 (cstSSHPublicKeyFile)The certificate store is the name of a file that contains an SSH-style public key.
14 (cstPPKFile)The certificate store is the name of a file that contains a PPK (PuTTY Private Key).
15 (cstPPKBlob)The certificate store is a string (binary) that contains a PPK (PuTTY Private Key).
16 (cstXMLFile)The certificate store is the name of a file that contains a certificate in XML format.
17 (cstXMLBlob)The certificate store is a string that contains a certificate in XML format.

Data Type

Integer

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
E-Payment Integrator 2016 Node.js Edition - Version 16.0 [Build 7240]