SSHKeyManager Class

Properties   Methods   Events   Config Settings   Errors  

The SSHKeyManager class provides access to SSH key management functions.

Class Name

SecureBlackbox_SSHKeyManager

Procedural Interface

 secureblackbox_sshkeymanager_open();
 secureblackbox_sshkeymanager_close($res);
 secureblackbox_sshkeymanager_register_callback($res, $id, $function);
 secureblackbox_sshkeymanager_get_last_error($res);
 secureblackbox_sshkeymanager_get_last_error_code($res);
 secureblackbox_sshkeymanager_set($res, $id, $index, $value);
 secureblackbox_sshkeymanager_get($res, $id, $index);
 secureblackbox_sshkeymanager_do_config($res, $configurationstring);
 secureblackbox_sshkeymanager_do_createnew($res);
 secureblackbox_sshkeymanager_do_doaction($res, $actionid, $actionparams);
 secureblackbox_sshkeymanager_do_exportbytes($res, $format, $privatekey, $password);
 secureblackbox_sshkeymanager_do_exporttocert($res);
 secureblackbox_sshkeymanager_do_exporttocryptokey($res);
 secureblackbox_sshkeymanager_do_exporttofile($res, $filename, $format, $privatekey, $password);
 secureblackbox_sshkeymanager_do_generate($res, $keyalgorithm, $scheme, $schemeparams, $keybits);
 secureblackbox_sshkeymanager_do_generatecert($res, $keyalgorithm, $scheme, $schemeparams, $keybits, $serialnumber, $role, $identifier, $principals, $validfrom, $validto, $pars);
 secureblackbox_sshkeymanager_do_getkeyparam($res, $name);
 secureblackbox_sshkeymanager_do_getkeyparamstr($res, $name);
 secureblackbox_sshkeymanager_do_importbytes($res, $bytes, $password);
 secureblackbox_sshkeymanager_do_importfromcert($res);
 secureblackbox_sshkeymanager_do_importfromcryptokey($res);
 secureblackbox_sshkeymanager_do_importfromfile($res, $path, $password);
 secureblackbox_sshkeymanager_do_reset($res);
 secureblackbox_sshkeymanager_do_setkeyparam($res, $name, $value);
 secureblackbox_sshkeymanager_do_setkeyparamstr($res, $name, $valuestr);

Remarks

SSHKeyManager provides the capabilities of generating, storing, importing, and exporting SSH keys.

The SSHKeyManager class serves the following typical purposes:

  • Loading private keys to be used with client-side 'public key' authentication.
  • Loading private keys to be used as server host keys.
  • Loading known public keys for peer authenticity validation.
  • Generating new keypairs for client or server authentication.
  • Changing passwords on existing keys.

Importing keys

To import a key, call one of the Import*() methods. Apart from importing from a buffer or file, SSHKeyManager lets you import keys from X.509 certificates (ImportFromCert) and raw cryptographic keys (ImportFromCryptoKey).

SSHKeyManager supports most of the widely used key formats: OpenSSH (v1 and v2), Putty (including v3), IETF, and binary.

Generating keypairs

To generate a keypair, call CreateNew, followed by Generate. The details of the newly generated key will become available in the Key object.

Once the key has been generated, save it to a file (ExportToFile) or elsewhere. Make sure to save both parts of the keypair (public and private).

Using SSHKeyManager with SSHClient and SFTPClient

One of the uses of SSHKeyManager with client-side SSH classes is for setting up private keys for client authentication. Use the component as following:

  • Import the private key as described above.
  • Make sure the details of the key in the Key object are correct.
  • Assign the Key object to the SSH or SFTP client's Key property.

Using SSHKeyManager with SFTPServer

In a similar way, SSHKeyManager can be used to configure the host key on the server side:

  • Import the private key as described above.
  • Make sure the details of the Key are correct.
  • Add the Key object to the SFTPServer's ServerKeys collection.

Note: you can have more than one host key attached to the server. This is often the case where the server owner wants it to support various public key algorithms.

Supported algorithms

SSHKeyManager supports all popular SSH public key algorithms: RSA, ECDSA, EdDSA, and DSS.

Property List


The following is the full list of the properties of the class with short descriptions. Click on the links for further details.

CAAlgorithmSpecifies the key algorithm.
CABitsThe number of bits in the key: the more the better, 2048 or 4096 are typical values.
CACommentThe comment for the public key.
CACurveSpecifies the elliptical curve when EC cryptography is used.
CAExtractableWhether the key is extractable (e.
CAFingerprintMD5Contains the MD5 fingerprint (hash) of the key.
CAFingerprintSHA1Contains the SHA-1 fingerprint (hash) of the key.
CAFingerprintSHA256Contains the SHA-256 fingerprint (hash) of the key.
CAHandleAllows to get or set a 'handle', a unique identifier of the underlying property object.
CAKeyFormatSpecifies the format in which the key is stored.
CAKeyProtectionAlgorithmSpecifies the key protection algorithm.
CAPrivateWhether this key is a private key or not.
CAPublicWhether this key is a public key or not.
CASubjectSpecifies the public key owner (subject).
CertBytesReturns the raw certificate data in DER format.
CertHandleAllows to get or set a 'handle', a unique identifier of the underlying property object.
CryptoKeyHandleAllows to get or set a 'handle', a unique identifier of the underlying property object.
FIPSModeReserved.
KeyAlgorithmSpecifies the key algorithm.
KeyBitsThe number of bits in the key: the more the better, 2048 or 4096 are typical values.
KeyCommentThe comment for the public key.
KeyCurveSpecifies the elliptical curve when EC cryptography is used.
KeyExtractableWhether the key is extractable (e.
KeyFingerprintMD5Contains the MD5 fingerprint (hash) of the key.
KeyFingerprintSHA1Contains the SHA-1 fingerprint (hash) of the key.
KeyFingerprintSHA256Contains the SHA-256 fingerprint (hash) of the key.
KeyHandleAllows to get or set a 'handle', a unique identifier of the underlying property object.
KeyFormatSpecifies the format in which the key is stored.
KeyProtectionAlgorithmSpecifies the key protection algorithm.
KeyPrivateWhether this key is a private key or not.
KeyPublicWhether this key is a public key or not.
KeySubjectSpecifies the public key owner (subject).

Method List


The following is the full list of the methods of the class with short descriptions. Click on the links for further details.

ConfigSets or retrieves a configuration setting.
CreateNewCreates a template for a new keypair.
DoActionPerforms an additional action.
ExportBytesWrites the key to a memory buffer.
ExportToCertExports the key to a certificate.
ExportToCryptoKeyExports the key to a crypto key object.
ExportToFileWrites key to file.
GenerateGenerates a new SSH key.
GenerateCertGenerates a new OpenSSH certificate.
GetKeyParamReturns an key-specific key parameter.
GetKeyParamStrReturns an algorithm-specific key parameter to a string.
ImportBytesLoads key from buffer.
ImportFromCertLoads a key from an X.509 certificate.
ImportFromCryptoKeyImports a key from a crypto key.
ImportFromFileLoads key from file.
ResetResets the class settings.
SetKeyParamSets a key-specific key parameter.
SetKeyParamStrSets a key-specific key parameter.

Event List


The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.

ErrorInformation about errors during SSH key management.
NotificationThis event notifies the application about an underlying control flow event.

Config Settings


The following is a list of config settings for the class with short descriptions. Click on the links for further details.

DuplicatePublicKeyInOpenSSHEdDSAEnables or disables inclusion of the public part in private EdDSA keys.
HashAlgorithmSpecifies the hash algorithm to be used with an RSA key when authenticating.
ImportModeAlters the behaviour of Import* methods.
TempPathPath for storing temporary files.
ASN1UseGlobalTagCacheControls whether ASN.1 module should use a global object cache.
AssignSystemSmartCardPinsSpecifies whether CSP-level PINs should be assigned to CNG keys.
CheckKeyIntegrityBeforeUseEnables or disable private key integrity check before use.
CookieCachingSpecifies whether a cookie cache should be used for HTTP(S) transports.
CookiesGets or sets local cookies for the class.
DefDeriveKeyIterationsSpecifies the default key derivation algorithm iteration count.
DNSLocalSuffixThe suffix to assign for TLD names.
EnableClientSideSSLFFDHEEnables or disables finite field DHE key exchange support in TLS clients.
EnableSSHMLKEMEnables support for ML-KEM/hybrid key exchange algorithms in SSH client and server classes.
EnableTLSMLKEMEnables support for ML-KEM and hybrid groups in TLS client and server classes.
GlobalCookiesGets or sets global cookies for all the HTTP transports.
HardwareCryptoUsePolicyThe hardware crypto usage policy.
HttpUserAgentSpecifies the user agent name to be used by all HTTP clients.
HttpVersionThe HTTP version to use in any inner HTTP client classes created.
IgnoreExpiredMSCTLSigningCertWhether to tolerate the expired Windows Update signing certificate.
ListDelimiterThe delimiter character for multi-element lists.
LogDestinationSpecifies the debug log destination.
LogDetailsSpecifies the debug log details to dump.
LogFileSpecifies the debug log filename.
LogFiltersSpecifies the debug log filters.
LogFlushModeSpecifies the log flush mode.
LogLevelSpecifies the debug log level.
LogMaxEventCountSpecifies the maximum number of events to cache before further action is taken.
LogRotationModeSpecifies the log rotation mode.
MaxASN1BufferLengthSpecifies the maximal allowed length for ASN.1 primitive tag data.
MaxASN1TreeDepthSpecifies the maximal depth for processed ASN.1 trees.
OCSPHashAlgorithmSpecifies the hash algorithm to be used to identify certificates in OCSP requests.
OldClientSideRSAFallbackSpecifies whether the SSH client should use a SHA1 fallback.
PKICacheSpecifies which PKI elements (certificates, CRLs, OCSP responses) should be cached.
PKICachePathSpecifies the file system path where cached PKI data is stored.
ProductVersionReturns the version of the SecureBlackbox library.
ServerSSLDHKeyLengthSets the size of the TLS DHE key exchange group.
StaticDNSSpecifies whether static DNS rules should be used.
StaticIPAddress[domain]Gets or sets an IP address for the specified domain name.
StaticIPAddressesGets or sets all the static DNS rules.
TagAllows to store any custom data.
TLSSessionGroupSpecifies the group name of TLS sessions to be used for session resumption.
TLSSessionLifetimeSpecifies lifetime in seconds of the cached TLS session.
TLSSessionPurgeIntervalSpecifies how often the session cache should remove the expired TLS sessions.
UseCRLObjectCachingSpecifies whether reuse of loaded CRL objects is enabled.
UseInternalRandomSwitches between SecureBlackbox-own and platform PRNGs.
UseLegacyAdESValidationEnables legacy AdES validation mode.
UseOCSPResponseObjectCachingSpecifies whether reuse of loaded OCSP response objects is enabled.
UseOwnDNSResolverSpecifies whether the client classes should use own DNS resolver.
UseSharedSystemStoragesSpecifies whether the validation engine should use a global per-process copy of the system certificate stores.
UseSystemNativeSizeCalculationAn internal CryptoAPI access tweak.
UseSystemOAEPAndPSSEnforces or disables the use of system-driven RSA OAEP and PSS computations.
UseSystemRandomEnables or disables the use of the OS PRNG.
XMLRDNDescriptorName[OID]Defines an OID mapping to descriptor names for the certificate's IssuerRDN or SubjectRDN.
XMLRDNDescriptorPriority[OID]Specifies the priority of descriptor names associated with a specific OID.
XMLRDNDescriptorReverseOrderSpecifies whether to reverse the order of descriptors in RDN.
XMLRDNDescriptorSeparatorSpecifies the separator used between descriptors in RDN.

CAAlgorithm Property (SecureBlackbox_SSHKeyManager Class)

Specifies the key algorithm.

Object Oriented Interface

public function getCAAlgorithm();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 1 );

Default Value

''

Remarks

Specifies the key algorithm.

The following key algorithms are currently supported and can be returned by this property:

  • RSA
  • DSS
  • ECDSA
  • EDDSA
  • MLDSA
  • ECDSA-SK
  • EDDSA-SK

This property is read-only and not available at design time.

Data Type

String

CABits Property (SecureBlackbox_SSHKeyManager Class)

The number of bits in the key: the more the better, 2048 or 4096 are typical values.

Object Oriented Interface

public function getCABits();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 2 );

Default Value

0

Remarks

The number of bits in the key: the more the better, 2048 or 4096 are typical values.

This property is read-only and not available at design time.

Data Type

Integer

CAComment Property (SecureBlackbox_SSHKeyManager Class)

The comment for the public key.

Object Oriented Interface

public function getCAComment();
public function setCAComment($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 3 );
secureblackbox_sshkeymanager_set($res, 3, $value );

Default Value

''

Remarks

The comment for the public key.

This property is not available at design time.

Data Type

String

CACurve Property (SecureBlackbox_SSHKeyManager Class)

Specifies the elliptical curve when EC cryptography is used.

Object Oriented Interface

public function getCACurve();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 4 );

Default Value

''

Remarks

Specifies the elliptical curve when EC cryptography is used.

The following curves are currently supported:

  • NISTP256
  • NISTP384
  • NISTP521
  • NISTK163
  • NISTP192
  • NISTP224
  • NISTK233
  • NISTB233
  • NISTK283
  • NISTK409
  • NISTB409
  • NISTK571
  • CURVE25519 (EdDSA curve)
  • CURVE448 (EdDSA curve)

This property is read-only and not available at design time.

Data Type

String

CAExtractable Property (SecureBlackbox_SSHKeyManager Class)

Whether the key is extractable (e.

Object Oriented Interface

public function getCAExtractable();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 5 );

Default Value

false

Remarks

Whether the key is extractable (e.g., from a security token), or not.

This property is read-only and not available at design time.

Data Type

Boolean

CAFingerprintMD5 Property (SecureBlackbox_SSHKeyManager Class)

Contains the MD5 fingerprint (hash) of the key.

Object Oriented Interface

public function getCAFingerprintMD5();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 6 );

Default Value

''

Remarks

Contains the MD5 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

CAFingerprintSHA1 Property (SecureBlackbox_SSHKeyManager Class)

Contains the SHA-1 fingerprint (hash) of the key.

Object Oriented Interface

public function getCAFingerprintSHA1();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 7 );

Default Value

''

Remarks

Contains the SHA-1 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

CAFingerprintSHA256 Property (SecureBlackbox_SSHKeyManager Class)

Contains the SHA-256 fingerprint (hash) of the key.

Object Oriented Interface

public function getCAFingerprintSHA256();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 8 );

Default Value

''

Remarks

Contains the SHA-256 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

CAHandle Property (SecureBlackbox_SSHKeyManager Class)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

Object Oriented Interface

public function getCAHandle();
public function setCAHandle($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 9 );
secureblackbox_sshkeymanager_set($res, 9, $value );

Default Value

0

Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation. pdfSigner.setSigningCertHandle(certMgr.getCertHandle());

This property is not available at design time.

Data Type

Long64

CAKeyFormat Property (SecureBlackbox_SSHKeyManager Class)

Specifies the format in which the key is stored.

Object Oriented Interface

public function getCAKeyFormat();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 10 );

Possible Values

SSHKEYMANAGER_CAKEYFORMAT_OPEN_SSH(0), 
SSHKEYMANAGER_CAKEYFORMAT_OPEN_SSH2(1),
SSHKEYMANAGER_CAKEYFORMAT_IETF(2),
SSHKEYMANAGER_CAKEYFORMAT_PU_TTY(3),
SSHKEYMANAGER_CAKEYFORMAT_X509(4),
SSHKEYMANAGER_CAKEYFORMAT_BINARY(5),
SSHKEYMANAGER_CAKEYFORMAT_SSH1(6),
SSHKEYMANAGER_CAKEYFORMAT_PGP(7),
SSHKEYMANAGER_CAKEYFORMAT_PKCS8(8),
SSHKEYMANAGER_CAKEYFORMAT_PU_TTY3(9),
SSHKEYMANAGER_CAKEYFORMAT_OPEN_SSHCERT(10)

Default Value

0

Remarks

Specifies the format in which the key is stored.

ckfOpenSSH0
ckfOpenSSH21
ckfIETF2
ckfPuTTY3
ckfX5094
ckfBinary5
ckfSSH16
ckfPGP7
ckfPKCS88
ckfPuTTY39
ckfOpenSSHCert10

This property is read-only and not available at design time.

Data Type

Integer

CAKeyProtectionAlgorithm Property (SecureBlackbox_SSHKeyManager Class)

Specifies the key protection algorithm.

Object Oriented Interface

public function getCAKeyProtectionAlgorithm();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 11 );

Default Value

''

Remarks

Specifies the key protection algorithm.

This property is read-only and not available at design time.

Data Type

String

CAPrivate Property (SecureBlackbox_SSHKeyManager Class)

Whether this key is a private key or not.

Object Oriented Interface

public function getCAPrivate();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 12 );

Default Value

false

Remarks

Whether this key is a private key or not.

This property is read-only and not available at design time.

Data Type

Boolean

CAPublic Property (SecureBlackbox_SSHKeyManager Class)

Whether this key is a public key or not.

Object Oriented Interface

public function getCAPublic();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 13 );

Default Value

false

Remarks

Whether this key is a public key or not.

This property is read-only and not available at design time.

Data Type

Boolean

CASubject Property (SecureBlackbox_SSHKeyManager Class)

Specifies the public key owner (subject).

Object Oriented Interface

public function getCASubject();
public function setCASubject($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 14 );
secureblackbox_sshkeymanager_set($res, 14, $value );

Default Value

''

Remarks

Specifies the public key owner (subject). This property is used only for IETF-keys.

This property is not available at design time.

Data Type

String

CertBytes Property (SecureBlackbox_SSHKeyManager Class)

Returns the raw certificate data in DER format.

Object Oriented Interface

public function getCertBytes();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 15 );

Remarks

Returns the raw certificate data in DER format.

This property is read-only and not available at design time.

Data Type

Byte Array

CertHandle Property (SecureBlackbox_SSHKeyManager Class)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

Object Oriented Interface

public function getCertHandle();
public function setCertHandle($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 23 );
secureblackbox_sshkeymanager_set($res, 23, $value );

Default Value

0

Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation. pdfSigner.setSigningCertHandle(certMgr.getCertHandle());

This property is not available at design time.

Data Type

Long64

CryptoKeyHandle Property (SecureBlackbox_SSHKeyManager Class)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

Object Oriented Interface

public function getCryptoKeyHandle();
public function setCryptoKeyHandle($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 59 );
secureblackbox_sshkeymanager_set($res, 59, $value );

Default Value

0

Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation. pdfSigner.setSigningCertHandle(certMgr.getCertHandle());

This property is not available at design time.

Data Type

Long64

FIPSMode Property (SecureBlackbox_SSHKeyManager Class)

Reserved.

Object Oriented Interface

public function getFIPSMode();
public function setFIPSMode($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 69 );
secureblackbox_sshkeymanager_set($res, 69, $value );

Default Value

false

Remarks

This property is reserved for future use.

Data Type

Boolean

KeyAlgorithm Property (SecureBlackbox_SSHKeyManager Class)

Specifies the key algorithm.

Object Oriented Interface

public function getKeyAlgorithm();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 70 );

Default Value

''

Remarks

Specifies the key algorithm.

The following key algorithms are currently supported and can be returned by this property:

  • RSA
  • DSS
  • ECDSA
  • EDDSA
  • MLDSA
  • ECDSA-SK
  • EDDSA-SK

This property is read-only and not available at design time.

Data Type

String

KeyBits Property (SecureBlackbox_SSHKeyManager Class)

The number of bits in the key: the more the better, 2048 or 4096 are typical values.

Object Oriented Interface

public function getKeyBits();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 71 );

Default Value

0

Remarks

The number of bits in the key: the more the better, 2048 or 4096 are typical values.

This property is read-only and not available at design time.

Data Type

Integer

KeyComment Property (SecureBlackbox_SSHKeyManager Class)

The comment for the public key.

Object Oriented Interface

public function getKeyComment();
public function setKeyComment($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 72 );
secureblackbox_sshkeymanager_set($res, 72, $value );

Default Value

''

Remarks

The comment for the public key.

This property is not available at design time.

Data Type

String

KeyCurve Property (SecureBlackbox_SSHKeyManager Class)

Specifies the elliptical curve when EC cryptography is used.

Object Oriented Interface

public function getKeyCurve();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 73 );

Default Value

''

Remarks

Specifies the elliptical curve when EC cryptography is used.

The following curves are currently supported:

  • NISTP256
  • NISTP384
  • NISTP521
  • NISTK163
  • NISTP192
  • NISTP224
  • NISTK233
  • NISTB233
  • NISTK283
  • NISTK409
  • NISTB409
  • NISTK571
  • CURVE25519 (EdDSA curve)
  • CURVE448 (EdDSA curve)

This property is read-only and not available at design time.

Data Type

String

KeyExtractable Property (SecureBlackbox_SSHKeyManager Class)

Whether the key is extractable (e.

Object Oriented Interface

public function getKeyExtractable();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 74 );

Default Value

false

Remarks

Whether the key is extractable (e.g., from a security token), or not.

This property is read-only and not available at design time.

Data Type

Boolean

KeyFingerprintMD5 Property (SecureBlackbox_SSHKeyManager Class)

Contains the MD5 fingerprint (hash) of the key.

Object Oriented Interface

public function getKeyFingerprintMD5();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 75 );

Default Value

''

Remarks

Contains the MD5 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

KeyFingerprintSHA1 Property (SecureBlackbox_SSHKeyManager Class)

Contains the SHA-1 fingerprint (hash) of the key.

Object Oriented Interface

public function getKeyFingerprintSHA1();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 76 );

Default Value

''

Remarks

Contains the SHA-1 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

KeyFingerprintSHA256 Property (SecureBlackbox_SSHKeyManager Class)

Contains the SHA-256 fingerprint (hash) of the key.

Object Oriented Interface

public function getKeyFingerprintSHA256();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 77 );

Default Value

''

Remarks

Contains the SHA-256 fingerprint (hash) of the key.

This property is read-only and not available at design time.

Data Type

String

KeyHandle Property (SecureBlackbox_SSHKeyManager Class)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

Object Oriented Interface

public function getKeyHandle();
public function setKeyHandle($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 78 );
secureblackbox_sshkeymanager_set($res, 78, $value );

Default Value

0

Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation. pdfSigner.setSigningCertHandle(certMgr.getCertHandle());

This property is not available at design time.

Data Type

Long64

KeyFormat Property (SecureBlackbox_SSHKeyManager Class)

Specifies the format in which the key is stored.

Object Oriented Interface

public function getKeyFormat();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 79 );

Possible Values

SSHKEYMANAGER_KEYFORMAT_OPEN_SSH(0), 
SSHKEYMANAGER_KEYFORMAT_OPEN_SSH2(1),
SSHKEYMANAGER_KEYFORMAT_IETF(2),
SSHKEYMANAGER_KEYFORMAT_PU_TTY(3),
SSHKEYMANAGER_KEYFORMAT_X509(4),
SSHKEYMANAGER_KEYFORMAT_BINARY(5),
SSHKEYMANAGER_KEYFORMAT_SSH1(6),
SSHKEYMANAGER_KEYFORMAT_PGP(7),
SSHKEYMANAGER_KEYFORMAT_PKCS8(8),
SSHKEYMANAGER_KEYFORMAT_PU_TTY3(9),
SSHKEYMANAGER_KEYFORMAT_OPEN_SSHCERT(10)

Default Value

0

Remarks

Specifies the format in which the key is stored.

ckfOpenSSH0
ckfOpenSSH21
ckfIETF2
ckfPuTTY3
ckfX5094
ckfBinary5
ckfSSH16
ckfPGP7
ckfPKCS88
ckfPuTTY39
ckfOpenSSHCert10

This property is read-only and not available at design time.

Data Type

Integer

KeyProtectionAlgorithm Property (SecureBlackbox_SSHKeyManager Class)

Specifies the key protection algorithm.

Object Oriented Interface

public function getKeyProtectionAlgorithm();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 80 );

Default Value

''

Remarks

Specifies the key protection algorithm.

This property is read-only and not available at design time.

Data Type

String

KeyPrivate Property (SecureBlackbox_SSHKeyManager Class)

Whether this key is a private key or not.

Object Oriented Interface

public function getKeyPrivate();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 81 );

Default Value

false

Remarks

Whether this key is a private key or not.

This property is read-only and not available at design time.

Data Type

Boolean

KeyPublic Property (SecureBlackbox_SSHKeyManager Class)

Whether this key is a public key or not.

Object Oriented Interface

public function getKeyPublic();

Procedural Interface

secureblackbox_sshkeymanager_get($res, 82 );

Default Value

false

Remarks

Whether this key is a public key or not.

This property is read-only and not available at design time.

Data Type

Boolean

KeySubject Property (SecureBlackbox_SSHKeyManager Class)

Specifies the public key owner (subject).

Object Oriented Interface

public function getKeySubject();
public function setKeySubject($value);

Procedural Interface

secureblackbox_sshkeymanager_get($res, 83 );
secureblackbox_sshkeymanager_set($res, 83, $value );

Default Value

''

Remarks

Specifies the public key owner (subject). This property is used only for IETF-keys.

This property is not available at design time.

Data Type

String

Config Method (SecureBlackbox_SSHKeyManager Class)

Sets or retrieves a configuration setting.

Object Oriented Interface

public function doConfig($configurationstring);

Procedural Interface

secureblackbox_sshkeymanager_do_config($res, $configurationstring);

Remarks

Config is a generic method available in every class. It is used to set and retrieve configuration settings for the class.

These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.

To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).

To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.

CreateNew Method (SecureBlackbox_SSHKeyManager Class)

Creates a template for a new keypair.

Object Oriented Interface

public function doCreateNew();

Procedural Interface

secureblackbox_sshkeymanager_do_createnew($res);

Remarks

This method pre-generates a template for a new key.

Adjust the properties of the Key object and call Generate to complete the generation.

DoAction Method (SecureBlackbox_SSHKeyManager Class)

Performs an additional action.

Object Oriented Interface

public function doDoAction($actionid, $actionparams);

Procedural Interface

secureblackbox_sshkeymanager_do_doaction($res, $actionid, $actionparams);

Remarks

DoAction is a generic method available in every class. It is used to perform an additional action introduced after the product major release. The list of actions is not fixed, and may be flexibly extended over time.

The unique identifier (case insensitive) of the action is provided in the ActionID parameter.

ActionParams contains the value of a single parameter, or a list of multiple parameters for the action in the form of PARAM1=VALUE1;PARAM2=VALUE2;....

Common ActionIDs:

ActionParametersReturned valueDescription
ResetTrustedListCachenonenoneClears the cached list of trusted lists.
ResetCertificateCachenonenoneClears the cached certificates.
ResetCRLCachenonenoneClears the cached CRLs.
ResetOCSPResponseCachenonenoneClears the cached OCSP responses.

ExportBytes Method (SecureBlackbox_SSHKeyManager Class)

Writes the key to a memory buffer.

Object Oriented Interface

public function doExportBytes($format, $privatekey, $password);

Procedural Interface

secureblackbox_sshkeymanager_do_exportbytes($res, $format, $privatekey, $password);

Remarks

Use this method to save Key in the buffer. Format specifies the format in which the key should be stored, as following:

ckfOpenSSH0
ckfOpenSSH21
ckfIETF2
ckfPuTTY3
ckfX5094
ckfBinary5
ckfSSH16
ckfPGP7
ckfPKCS88
ckfPuTTY39
ckfOpenSSHCert10

The PrivateKey parameter tells whether it the private (or public, otherwise) key should be exported. The Password defines the password that should be used to encrypt the private key.

ExportToCert Method (SecureBlackbox_SSHKeyManager Class)

Exports the key to a certificate.

Object Oriented Interface

public function doExportToCert();

Procedural Interface

secureblackbox_sshkeymanager_do_exporttocert($res);

Remarks

Use this method to save the Key (both the public and secret parts) to the certificate specified in Certificate.

ExportToCryptoKey Method (SecureBlackbox_SSHKeyManager Class)

Exports the key to a crypto key object.

Object Oriented Interface

public function doExportToCryptoKey();

Procedural Interface

secureblackbox_sshkeymanager_do_exporttocryptokey($res);

Remarks

Use this method to save the Key (both the public and secret parts) to the crypto key provided via CryptoKey.

ExportToFile Method (SecureBlackbox_SSHKeyManager Class)

Writes key to file.

Object Oriented Interface

public function doExportToFile($filename, $format, $privatekey, $password);

Procedural Interface

secureblackbox_sshkeymanager_do_exporttofile($res, $filename, $format, $privatekey, $password);

Remarks

Use this method to save Key in the file. Format specifies the format in which the key should be stored, as following:

ckfOpenSSH0
ckfOpenSSH21
ckfIETF2
ckfPuTTY3
ckfX5094
ckfBinary5
ckfSSH16
ckfPGP7
ckfPKCS88
ckfPuTTY39
ckfOpenSSHCert10

The PrivateKey parameter tells whether it the private (or public, otherwise) key should be exported. Path designates the path to the file that the key should be written to, and Password defines the password that should be used to encrypt the private key.

Generate Method (SecureBlackbox_SSHKeyManager Class)

Generates a new SSH key.

Object Oriented Interface

public function doGenerate($keyalgorithm, $scheme, $schemeparams, $keybits);

Procedural Interface

secureblackbox_sshkeymanager_do_generate($res, $keyalgorithm, $scheme, $schemeparams, $keybits);

Remarks

Call this method to generate a new key or keypair with the desired KeyAlgorithm and KeyBits of length.

The generated key will be populated in the Key property.

The KeyAlgorithm parameter supports the following algorithm identifiers:

  • RSA
  • DSS
  • ECDSA
  • EDDSA
  • MLDSA
  • ECDSA-SK
  • EDDSA-SK

If using ECDSA, the following curves are supported (to be passed as the Scheme parameter):

  • NISTP256
  • NISTP384
  • NISTP521
  • NISTK163
  • NISTP192
  • NISTP224
  • NISTK233
  • NISTB233
  • NISTK283
  • NISTK409
  • NISTB409
  • NISTK571

The following curves can also be used with EDDSA:

  • CURVE25519
  • CURVE448

The following ML-DSA variants are supported - or use blanket 'MLDSA' algorithm with explicit KeyBits setting:

  • ML-DSA-44
  • ML-DSA-65
  • ML-DSA-87

Use the following algorithm names to generate OpenSSH certificates:

  • RSA-cert, RSA-certv01
  • ECDSA-cert, ECDSA-certv01
  • EDDSA-cert, EDDSA-certv01
The "-cert" algorithms will generate a certificate with the standard name (e.g. ssh-rsa-cert). The "-certv01" algorithms will generate a certificate with the respective vendor-extension name (e.g. ssh-rsa-cert-v01@openssh.com). While the latter are widely use in real world, it is expected that once the standard is published implementations will switch to the standard naming.

// generating a curve25519 keypair KeyMgr.Generate("EDDSA", "CURVE25519", "", 0); // KeyBits is irrelevant for this fixed-length scheme // generating an ECDSA/P521 key KeyMgr.Generate("ECDSA", "NISTP521", "", 521); // generating an RSA key KeyMgr.Generate("RSA", "", "", 2048); // generating a Ed25519 OpenSSH certificate with vendor-extension name KeyMgr.Generate("EDDSA-certv01", "CURVE25519", "", 0); KeyMgr.ExportToFile(Path, ckfOpenSSHCert, false, ""); // exporting the certificate file KeyMgr.ExportToFile(Path + ".priv", ckfOpenSSH2, true, ""); // exporting the private key

GenerateCert Method (SecureBlackbox_SSHKeyManager Class)

Generates a new OpenSSH certificate.

Object Oriented Interface

public function doGenerateCert($keyalgorithm, $scheme, $schemeparams, $keybits, $serialnumber, $role, $identifier, $principals, $validfrom, $validto, $pars);

Procedural Interface

secureblackbox_sshkeymanager_do_generatecert($res, $keyalgorithm, $scheme, $schemeparams, $keybits, $serialnumber, $role, $identifier, $principals, $validfrom, $validto, $pars);

Remarks

Call this method to generate a new OpenSSH certificate with the desired parameters.

OpenSSH certificates are extended cryptographic entities that, unlike generic SSH keys, can provide association between the cryptographic material of the key and the persona of their owner. Certificates include information about their holder, such as a username or a host name, can be constrained to a certain validity period, and include additional permissions or restrictions, such as which commands the holder is allowed to issue.

Every OpenSSH certificate must be signed by a separate private key, called a CA (certifying authority), at the time of its creation. A CA key is a generic OpenSSH key owned by the certificate issuer - for example, a server or network administrator. The public part of the CA key becomes part of the certificate and can be used by to validate the certificate:

  • the validating party first checks that the CA key embedded in the certificate is trusted, in the same way as it does for generic keys (e.g. by checking the .ssh directory or confirming the fingerprint with the user).
  • if the CA key is valid and trusted, it checks the integrity of its signature over the certificate data.
  • finally, it validates that the information contained in the certificate - such as the hostname - matches the host they intend to connect to.

Certificates provide multiple benefits for SSH key ecosystem, such as capabilities to set up implicit trust relationships, manage users centrally, and include key usage policies within the keys themselves. Just like generic keys, certificates can be used for both host and user authentication.

Note that OpenSSH certificates are not related to PKI (X.509) certificates in any way. They offer a somewhat similar, yet entirely different authentication mechanism.

You can choose to use this method to generate a certificate over a fresh new cryptographic keypair or a pre-existing SSH key. In the latter case, load the existing SSH key into SSHKeyManager first using ImportFromFile or similar methods. When a certificate is generated over an existing key, the algorithm and scheme parameters are discarded.

The KeyAlgorithm parameter supports the following algorithm identifiers:

  • RSA
  • DSS
  • ECDSA
  • EDDSA
  • MLDSA
  • ECDSA-SK
  • EDDSA-SK

If using ECDSA, the following curves are supported (to be passed as the Scheme parameter):

  • NISTP256
  • NISTP384
  • NISTP521
  • NISTK163
  • NISTP192
  • NISTP224
  • NISTK233
  • NISTB233
  • NISTK283
  • NISTK409
  • NISTB409
  • NISTK571

The following curves can also be used with EDDSA:

  • CURVE25519
  • CURVE448

The following ML-DSA variants are supported - or use blanket 'MLDSA' algorithm with explicit KeyBits setting:

  • ML-DSA-44
  • ML-DSA-65
  • ML-DSA-87

Just as with using the Generate method, you can use certificate-related algorithm aliases:

  • RSA-cert, RSA-certv01
  • ECDSA-cert, ECDSA-certv01
  • EDDSA-cert, EDDSA-certv01
The "-cert" algorithms will generate a certificate with the standard name (e.g. ssh-rsa-cert). The "-certv01" algorithms will generate a certificate with the respective vendor-extension name (e.g. ssh-rsa-cert-v01@openssh.com). While the latter are widely use in real world, it is expected that once the standard is published implementations will switch to the standard naming.

Unlike the Generate method, this method will always generate a certificate, even if a generic (e.g. RSA) algorithm name is provided to the Algorithm parameter. In that case the algorithm will be extended to the certificate-specific algorithm name (RSA-cert in this case). Note that the component will always apply the 'final' "-cert" algorithm name, so if you are looking to generate a certificate with an interim "-cert-v01@openssh.com" key, please use the RSA-certv01 syntax.

// generating a client-side Ed25519 OpenSSH certificate with vendor-extension ('draft') name KeyMgr.GenerateCert("EDDSA-certv01", "CURVE25519", "", 0, 12, 1 { user }, "John Peters Workstation", "johnp", "", "2029-12-31", ""); KeyMgr.ExportToFile(Path, ckfOpenSSHCert, false, ""); // exporting the certificate file KeyMgr.ExportToFile(Path + ".priv", ckfOpenSSH2, true, ""); // exporting the private key // generating a host-side RSA OpenSSH certificate with RFC name KeyMgr.GenerateCert("RSA", "", "", 2048, 1001, 2 { host }, "Local File Server", "fileserver", "192.168.1.91", "", ""); KeyMgr.ExportToFile(Path, ckfOpenSSHCert, false, ""); // exporting the certificate file KeyMgr.ExportToFile(Path + ".priv", ckfOpenSSH2, true, ""); // exporting the private key

GetKeyParam Method (SecureBlackbox_SSHKeyManager Class)

Returns an key-specific key parameter.

Object Oriented Interface

public function doGetKeyParam($name);

Procedural Interface

secureblackbox_sshkeymanager_do_getkeyparam($res, $name);

Remarks

Use this method to retrieve a binary key parameter.

The following parameters are currently supported:

CertIdentifierThe OpenSSH certificate identifier (OpenSSH certificates only)
CertCriticalOptions[i]The i-th critical option name (OpenSSH certificates only)
CertCriticalOptionValues[i]The i-th critical option value (OpenSSH certificates only)
CertExtensions[i]The i-th extension name (OpenSSH certificates only)
CertExtensionValues[i]The i-th extension value (OpenSSH certificates only)
CertSigningKeyA byte array containing the body of the CA key that has signed the current key (OpenSSH certificates only)

GetKeyParamStr Method (SecureBlackbox_SSHKeyManager Class)

Returns an algorithm-specific key parameter to a string.

Object Oriented Interface

public function doGetKeyParamStr($name);

Procedural Interface

secureblackbox_sshkeymanager_do_getkeyparamstr($res, $name);

Remarks

Use this method to get a key parameter to a string.

The following parameters are currently supported:

HeadersThe key file headers where PEM-like format is used.
CertSerialNumberThe serial number of the certificate (OpenSSH certificates only)
CertRoleThe certificate role (host (2) or user (1)) (OpenSSH certificates only)
CertIdentifierThe identifier of the certificate (OpenSSH certificates only)
CertPrincipalsA list of principals associated with the certificate (OpenSSH certificates only)
CertValidFromThe starting moment of the certificate validity period (OpenSSH certificates only)
CertValidToThe ending moment of the certificate validity period (OpenSSH certificates only)
CertCriticalOptionCountThe number of critical options included in the certificate (use for iterating) (OpenSSH certificates only)
CertCriticalOptions[i]The i-th critical option (OpenSSH certificates only)
CertCriticalOptionValues[i]The i-th critical option value (OpenSSH certificates only)
CertExtensionCountThe number of extensions included in the certificate (use for iterating) (OpenSSH certificates only)
CertExtensions[i]The i-th extension name (OpenSSH certificates only) (OpenSSH certificates only)
CertExtensionValues[i]The i-th extension value (OpenSSH certificates only)
CertSigningKeyA string containing the body of the CA key that has signed the current key (OpenSSH certificates only)

ImportBytes Method (SecureBlackbox_SSHKeyManager Class)

Loads key from buffer.

Object Oriented Interface

public function doImportBytes($bytes, $password);

Procedural Interface

secureblackbox_sshkeymanager_do_importbytes($res, $bytes, $password);

Remarks

Use this method to read a key stored in a buffer. Password specifies a password to decrypt the private key.

This method automatically recognizes the format that the key is stored in.

ImportFromCert Method (SecureBlackbox_SSHKeyManager Class)

Loads a key from an X.509 certificate.

Object Oriented Interface

public function doImportFromCert();

Procedural Interface

secureblackbox_sshkeymanager_do_importfromcert($res);

Remarks

Use this method to load a key, either public or secret, from an X.509 certificate.

ImportFromCryptoKey Method (SecureBlackbox_SSHKeyManager Class)

Imports a key from a crypto key.

Object Oriented Interface

public function doImportFromCryptoKey();

Procedural Interface

secureblackbox_sshkeymanager_do_importfromcryptokey($res);

Remarks

Use this method to load a key, either public or private, from a crypto key. Provide the key via CryptoKey property.

ImportFromFile Method (SecureBlackbox_SSHKeyManager Class)

Loads key from file.

Object Oriented Interface

public function doImportFromFile($path, $password);

Procedural Interface

secureblackbox_sshkeymanager_do_importfromfile($res, $path, $password);

Remarks

Use this method to read a key stored in a file. Path specifies the full path to the file, Password is a password to decrypt the private key.

This method automatically recognizes the format that the key is stored in.

Reset Method (SecureBlackbox_SSHKeyManager Class)

Resets the class settings.

Object Oriented Interface

public function doReset();

Procedural Interface

secureblackbox_sshkeymanager_do_reset($res);

Remarks

Reset is a generic method available in every class.

SetKeyParam Method (SecureBlackbox_SSHKeyManager Class)

Sets a key-specific key parameter.

Object Oriented Interface

public function doSetKeyParam($name, $value);

Procedural Interface

secureblackbox_sshkeymanager_do_setkeyparam($res, $name, $value);

Remarks

Use this method to set a key- or algorithm-specific key parameter.

The following parameters are currently supported:

CertIdentifierThe OpenSSH certificate identifier (OpenSSH certificates only)
CertCriticalOptions[i]The i-th critical option name (OpenSSH certificates only)
CertCriticalOptionValues[i]The i-th critical option value (OpenSSH certificates only)
CertExtensions[i]The i-th extension name (OpenSSH certificates only)
CertExtensionValues[i]The i-th extension value (OpenSSH certificates only)
CertSigningKeyA byte array containing the body of the CA key that has signed the current key (OpenSSH certificates only)

SetKeyParamStr Method (SecureBlackbox_SSHKeyManager Class)

Sets a key-specific key parameter.

Object Oriented Interface

public function doSetKeyParamStr($name, $valuestr);

Procedural Interface

secureblackbox_sshkeymanager_do_setkeyparamstr($res, $name, $valuestr);

Remarks

Use this method to set a key-specific or algorithm-specific key parameter provided in a string.

The following parameters are currently supported:

HeadersThe key file headers where PEM-like format is used.
CertSerialNumberThe serial number of the certificate (OpenSSH certificates only)
CertRoleThe certificate role ('host' (2) or 'user' (1)) (OpenSSH certificates only)
CertIdentifierThe identifier of the certificate (OpenSSH certificates only)
CertPrincipalsA list of principals associated with the certificate (OpenSSH certificates only)
CertValidFromThe starting moment of the certificate validity period. YYYY-MM-DD HH:MM:SS format assumed (OpenSSH certificates only)
CertValidToThe ending moment of the certificate validity period YYYY-MM-DD HH:MM:SS format assumed (OpenSSH certificates only)
CertCriticalOptionCountThe number of critical options included in the certificate (use for iterating) (OpenSSH certificates only)
CertCriticalOptions[i]The i-th critical option (OpenSSH certificates only)
CertCriticalOptionValues[i]The i-th critical option value (OpenSSH certificates only)
CertExtensionCountThe number of extensions included in the certificate (use for iterating) (OpenSSH certificates only)
CertExtensions[i]The i-th extension name (OpenSSH certificates only) (OpenSSH certificates only)
CertExtensionValues[i]The i-th extension value (OpenSSH certificates only)
CertSigningKeyA string containing the body of the CA key that has signed the current key (OpenSSH certificates only)

The below example shows the use of key parameters for setting up the details of an OpenSSH certificate: mgr.CreateNew(); mgr.SetKeyParamStr("CertSerialNumber", "1984"); mgr.SetKeyParamStr("CertRole", "user"); mgr.SetKeyParamStr("CertIdentifier", "New OpenSSH certificate"); mgr.SetKeyParamStr("CertPrincipals", "john\r\njane"); mgr.SetKeyParamStr("CertValidFrom", "2026-01-01 12:34:56"); mgr.SetKeyParamStr("CertValidTo", "2029-01-01 12:34:56"); // adding a critical option explicitly mgr.SetKeyParamStr("CertCriticalOptionCount", '1'); mgr.SetKeyParamStr("CertCriticalOptions[0]", 'force-command'); mgr.SetKeyParamStr("CertCriticalOptionValues[0]", "\x0\x0\x0\x5ls -l"); // adding a known critical option using a shortcut mgr.SetKeyParamStr("CertCriticalOptionValues[verify-required]", ""); mgr.SetKeyParamStr("CertCriticalOptionValues[source-address]", "\x0\x0\x0\x1D" + "127.0.0.1,127.0.0.2,127.0.0.3"); // same syntax applies to extensions mgr.SetKeyParamStr("CertExtensionCount", "1"); mgr.SetKeyParamStr("CertExtensions[0]", "permit-pty"); mgr.SetKeyParamStr("CertExtensionValues[permit-port-forwarding]", ""); // setting the private CA key bytes := otherMgr.ExportBytes(ckfOpenSSH2, true, ""); mgr.SetKeyParam("CertSigningKey", bytes); mgr.Generate("EDDSA-certv01", "CURVE25519", "", 0); mgr.ExportToFile(Path, ckfOpenSSHCert, false, ""); mgr.ExportToFile(Path + ".priv", ckfOpenSSH2, true, "");

Error Event (SecureBlackbox_SSHKeyManager Class)

Information about errors during SSH key management.

Object Oriented Interface

public function fireError($param);

Procedural Interface

secureblackbox_sshkeymanager_register_callback($res, 1, array($this, 'fireError'));

Parameter List

 'errorcode'
'description'

Remarks

The event is fired in case of exceptional conditions during key management.

ErrorCode contains an error code and Description contains a textual description of the error.

Notification Event (SecureBlackbox_SSHKeyManager Class)

This event notifies the application about an underlying control flow event.

Object Oriented Interface

public function fireNotification($param);

Procedural Interface

secureblackbox_sshkeymanager_register_callback($res, 2, array($this, 'fireNotification'));

Parameter List

 'eventid'
'eventparam'

Remarks

The class fires this event to let the application know about some event, occurrence, or milestone in the class. For example, it may fire to report completion of the document processing. The list of events being reported is not fixed, and may be flexibly extended over time.

The unique identifier of the event is provided in the EventID parameter. EventParam contains any parameters accompanying the occurrence. Depending on the type of the class, the exact action it is performing, or the document being processed, one or both may be omitted.

Config Settings (SSHKeyManager Class)

The class accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.

SSHKeyManager Config Settings

DuplicatePublicKeyInOpenSSHEdDSA:   Enables or disables inclusion of the public part in private EdDSA keys.

This is a global setting that regulates whether to include the public EdDSA part when writing EdDSA private keys. This is a compatibility setting.

HashAlgorithm:   Specifies the hash algorithm to be used with an RSA key when authenticating.

This property specifies the hash algorithm that you would like to use when authenticating with this key. This only applies to RSA keys to resolve ambiguity between ssh-rsa and rsa-sha2-256/512 algorithms.

ImportMode:   Alters the behaviour of Import* methods.

The only value allowed by this property is Merge. If set, the Import* call appends the data provided in the array/file/stream to the SSH key currently held in the component. Use the Merge mode to load an associated private key to a manager object that holds a public OpenSSH certificate.

TempPath:   Path for storing temporary files.

This setting specifies an absolute path to the location on disk where temporary files are stored. This setting is supported only in the Java edition for all applicable signing components except PDFSigner, where this limitation does not apply.

Base Config Settings

ASN1UseGlobalTagCache:   Controls whether ASN.1 module should use a global object cache.

This is a performance setting. It is unlikely that you will ever need to adjust it.

AssignSystemSmartCardPins:   Specifies whether CSP-level PINs should be assigned to CNG keys.

This is a low-level tweak for certain cryptographic providers. It is unlikely that you will ever need to adjust it.

CheckKeyIntegrityBeforeUse:   Enables or disable private key integrity check before use.

This global property enables or disables private key material check before each signing operation. This slows down performance a bit, but prevents a selection of attacks on RSA keys where keys with unknown origins are used.

You can switch this property off to improve performance if your project only uses known, good private keys.

CookieCaching:   Specifies whether a cookie cache should be used for HTTP(S) transports.

Set this property to enable or disable cookies caching for the class.

Supported values are:

offNo caching (default)
localLocal caching
globalGlobal caching

Cookies:   Gets or sets local cookies for the class.

Use this property to get cookies from the internal cookie storage of the class and/or restore them back between application sessions.

DefDeriveKeyIterations:   Specifies the default key derivation algorithm iteration count.

This global property sets the default number of iterations for all supported key derivation algorithms. Note that you can provide the required number of iterations by using properties of the relevant key generation component; this global setting is used in scenarios where specific iteration count is not or cannot be provided.

DNSLocalSuffix:   The suffix to assign for TLD names.

Use this global setting to adjust the default suffix to assign to top-level domain names. The default is .local.

EnableClientSideSSLFFDHE:   Enables or disables finite field DHE key exchange support in TLS clients.

This global property enables or disables support for finite field DHE key exchange methods in TLS clients. FF DHE is a slower algorithm if compared to EC DHE; enabling it may result in slower connections.

This setting only applies to sessions negotiated with TLS version 1.3.

EnableSSHMLKEM:   Enables support for ML-KEM/hybrid key exchange algorithms in SSH client and server components.

Use this setting to enable hybrid key exchange algorithms in client and server SSH and SFTP components. This is a global setting that enables ML-KEM blanketly in all SSH-dependent components.

EnableTLSMLKEM:   Enables support for ML-KEM and hybrid groups in TLS client and server components.

Use this setting to enable ML-KEM and hybrid key exchange groups in client and server TLS components. This is a global setting that enables ML-KEM blanketly in all TLS-dependent components.

GlobalCookies:   Gets or sets global cookies for all the HTTP transports.

Use this property to get cookies from the GLOBAL cookie storage or restore them back between application sessions. These cookies will be used by all the classes that have its CookieCaching property set to "global".

HardwareCryptoUsePolicy:   The hardware crypto usage policy.

This global setting controls the hardware cryptography usage policy.

Supported Values:

auto Use hardware cryptography if available; otherwise, fall back to software-based cryptography (default).
enableAlways attempt to use hardware cryptography. If unavailable, exception will be thrown.
disableDo not use hardware cryptography.

HttpUserAgent:   Specifies the user agent name to be used by all HTTP clients.

This global setting defines the User-Agent field of the HTTP request provides information about the software that initiates the request. This value will be used by all the HTTP clients including the ones used internally in other classes.

HttpVersion:   The HTTP version to use in any inner HTTP client components created.

Set this property to 1.0 or 1.1 to indicate the HTTP version that any internal HTTP clients should use.

IgnoreExpiredMSCTLSigningCert:   Whether to tolerate the expired Windows Update signing certificate.

It is not uncommon for Microsoft Windows Update Certificate Trust List to be signed with an expired Microsoft certificate. Setting this global property to true makes SBB ignore the expired factor and take the Trust List into account.

ListDelimiter:   The delimiter character for multi-element lists.

Allows to set the delimiter for any multi-entry values returned by the component as a string object, such as file lists. For most of the components, this property is set to a newline sequence.

LogDestination:   Specifies the debug log destination.

Contains a comma-separated list of values that specifies where debug log should be dumped.

Supported values are:

fileFile
consoleConsole
systemlogSystem Log (supported for Android only)
debuggerDebugger (supported for VCL for Windows and .Net)

LogDetails:   Specifies the debug log details to dump.

Contains a comma-separated list of values that specifies which debug log details to dump.

Supported values are:

timeCurrent time
levelLevel
packagePackage name
moduleModule name
classClass name
methodMethod name
threadidThread Id
contenttypeContent type
contentContent
allAll details

LogFile:   Specifies the debug log filename.

Use this property to provide a path to the log file.

LogFilters:   Specifies the debug log filters.

Contains a comma-separated list of value pairs ("name:value") that describe filters.

Supported filter names are:

exclude-packageExclude a package specified in the value
exclude-moduleExclude a module specified in the value
exclude-classExclude a class specified in the value
exclude-methodExclude a method specified in the value
include-packageInclude a package specified in the value
include-moduleInclude a module specified in the value
include-classInclude a class specified in the value
include-methodInclude a method specified in the value

LogFlushMode:   Specifies the log flush mode.

Use this property to set the log flush mode. The following values are defined:

noneNo flush (caching only)
immediateImmediate flush (real-time logging)
maxcountFlush cached entries upon reaching LogMaxEventCount entries in the cache.

LogLevel:   Specifies the debug log level.

Use this property to provide the desired debug log level.

Supported values are:

noneNone (by default)
fatalSevere errors that cause premature termination.
errorOther runtime errors or unexpected conditions.
warningUse of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong".
infoInteresting runtime events (startup/shutdown).
debugDetailed information on flow of through the system.
traceMore detailed information.

LogMaxEventCount:   Specifies the maximum number of events to cache before further action is taken.

Use this property to specify the log event number threshold. This threshold may have different effects, depending on the rotation setting and/or the flush mode.

The default value of this setting is 100.

LogRotationMode:   Specifies the log rotation mode.

Use this property to set the log rotation mode. The following values are defined:

noneNo rotation
deleteolderDelete older entries from the cache upon reaching LogMaxEventCount
keepolderKeep older entries in the cache upon reaching LogMaxEventCount (newer entries are discarded)

MaxASN1BufferLength:   Specifies the maximal allowed length for ASN.1 primitive tag data.

This global property limits the maximal allowed length for ASN.1 tag data for non-content-carrying structures, such as certificates, CRLs, or timestamps. It does not affect structures that can carry content, such as CMS/CAdES messages. This is a security property aiming at preventing DoS attacks.

MaxASN1TreeDepth:   Specifies the maximal depth for processed ASN.1 trees.

This global property limits the maximal depth of ASN.1 trees that the component can handle without throwing an error. This is a security property aiming at preventing DoS attacks.

OCSPHashAlgorithm:   Specifies the hash algorithm to be used to identify certificates in OCSP requests.

This global setting defines the hash algorithm to use in OCSP requests during chain validation. Some OCSP responders can only use older algorithms, in which case setting this property to SHA1 may be helpful.

OldClientSideRSAFallback:   Specifies whether the SSH client should use a SHA1 fallback.

Tells the SSH client to use a legacy ssh-rsa authentication even if the server indicates support for newer algorithms, such as rsa-sha-256. This is a backward-compatibility tweak.

PKICache:   Specifies which PKI elements (certificates, CRLs, OCSP responses) should be cached.

The PKICache setting specifies which Public Key Infrastructure (PKI) elements should be cached to optimize performance and reduce retrieval times. It supports comma-separated values to indicate the specific types of PKI data that should be cached.

Supported Values:

certificateEnables caching of certificates.
crlEnables caching of Certificate Revocation Lists (CRLs).
ocspEnables caching of OCSP (Online Certificate Status Protocol) responses.

Example (default value): PKICache=certificate,crl,ocsp In this example, the component caches certificates, CRLs, and OCSP responses.

PKICachePath:   Specifies the file system path where cached PKI data is stored.

The PKICachePath setting defines the file system path where cached PKI data (e.g., certificates, CRLs, OCSP responses and Trusted Lists) will be stored. This allows the system to persistently save and retrieve PKI cache data, even across application restarts.

The default value is an empty string - no cached PKI data is stored on disk.

Example: PKICachePath=C:\Temp\cache In this example, the cached PKI data is stored in the C:\Temp\cache directory.

ProductVersion:   Returns the version of the SecureBlackbox library.

This property returns the long version string of the SecureBlackbox library being used (major.minor.build.revision).

ServerSSLDHKeyLength:   Sets the size of the TLS DHE key exchange group.

Use this property to adjust the length, in bits, of the DHE prime to be used by the TLS server.

StaticDNS:   Specifies whether static DNS rules should be used.

Set this property to enable or disable static DNS rules for the class. Works only if UseOwnDNSResolver is set to true.

Supported values are:

noneNo static DNS rules (default)
localLocal static DNS rules
globalGlobal static DNS rules

StaticIPAddress[domain]:   Gets or sets an IP address for the specified domain name.

Use this property to get or set an IP address for the specified domain name in the internal (of the class) or global DNS rules storage depending on the StaticDNS value. The type of the IP address (IPv4 or IPv6) is determined automatically. If both addresses are available, they are divided by the | (pipe) character.

StaticIPAddresses:   Gets or sets all the static DNS rules.

Use this property to get static DNS rules from the current rules storage or restore them back between application sessions. If StaticDNS of the class is set to "local", the property returns/restores the rules from/to the internal storage of the class. If StaticDNS of the class is set to "global", the property returns/restores the rules from/to the GLOBAL storage. The rules list is returned and accepted in JSON format.

Tag:   Allows to store any custom data.

Use this config property to store any custom data.

TLSSessionGroup:   Specifies the group name of TLS sessions to be used for session resumption.

Use this property to limit the search of cached TLS sessions to the specified group. Sessions from other groups will be ignored. By default, all sessions are cached with an empty group name and available to all the classes.

TLSSessionLifetime:   Specifies lifetime in seconds of the cached TLS session.

Use this property to specify how much time the TLS session should be kept in the session cache. After this time, the session expires and will be automatically removed from the cache. Default value is 300 seconds (5 minutes).

TLSSessionPurgeInterval:   Specifies how often the session cache should remove the expired TLS sessions.

Use this property to specify the time interval of purging the expired TLS sessions from the session cache. Default value is 60 seconds (1 minute).

UseCRLObjectCaching:   Specifies whether reuse of loaded CRL objects is enabled.

This setting enables or disables the caching of CRL objects. When set to true (the default value), the system checks if a CRL object is already loaded in memory before attempting to load a new instance. If the object is found, the existing instance is reused, and its reference count is incremented to track its usage. When the reference count reaches zero, indicating that no references to the object remain, the system will free the object from memory. This setting enhances performance by minimizing unnecessary object instantiation and promotes efficient memory management, particularly in scenarios where CRL objects are frequently used.

UseInternalRandom:   Switches between SecureBlackbox-own and platform PRNGs.

Allows to switch between internal/native PRNG implementation and the one provided by the platform.

UseLegacyAdESValidation:   Enables legacy AdES validation mode.

Use this setting to switch the AdES component to the validation approach that was used in SBB 2020/SBB 2022 (less attention to temporal details).

UseOCSPResponseObjectCaching:   Specifies whether reuse of loaded OCSP response objects is enabled.

This setting enables or disables the caching of OCSP response objects. When set to true (the default value), the system checks if a OCSP response object is already loaded in memory before attempting to load a new instance. If the object is found, the existing instance is reused, and its reference count is incremented to track its usage. When the reference count reaches zero, indicating that no references to the object remain, the system will free the object from memory. This setting enhances performance by minimizing unnecessary object instantiation and promotes efficient memory management, particularly in scenarios where OCSP response objects are frequently used.

UseOwnDNSResolver:   Specifies whether the client components should use own DNS resolver.

Set this global property to false to force all the client components to use the DNS resolver provided by the target OS instead of using own one.

UseSharedSystemStorages:   Specifies whether the validation engine should use a global per-process copy of the system certificate stores.

Set this global property to false to make each validation run use its own copy of system certificate stores.

UseSystemNativeSizeCalculation:   An internal CryptoAPI access tweak.

This is an internal setting. Please do not use it unless instructed by the support team.

UseSystemOAEPAndPSS:   Enforces or disables the use of system-driven RSA OAEP and PSS computations.

This global setting defines who is responsible for performing RSA-OAEP and RSA-PSS computations where the private key is stored in a Windows system store and is exportable. If set to true, SBB will delegate the computations to Windows via a CryptoAPI call. Otherwise, it will export the key material and perform the computations using its own OAEP/PSS implementation.

This setting only applies to certificates originating from a Windows system store.

UseSystemRandom:   Enables or disables the use of the OS PRNG.

Use this global property to enable or disable the use of operating system-driven pseudorandom number generation.

XMLRDNDescriptorName[OID]:   Defines an OID mapping to descriptor names for the certificate's IssuerRDN or SubjectRDN.

This property defines custom mappings between Object Identifiers (OIDs) and descriptor names. This mapping specifies how the certificate's issuer and subject information (ds:IssuerRDN and ds:SubjectRDN elements respectively) are represented in XML signatures.

The property accepts comma-separated values where the first descriptor name is used when the OID is mapped, and subsequent values act as aliases for parsing.

Syntax: Config("XMLRDNDescriptorName[OID]=PrimaryName,Alias1,Alias2");

Where:

OID: The Object Identifier from the certificate's IssuerRDN or SubjectRDN that you want to map.

PrimaryName: The main descriptor name used in the XML signature when the OID is encountered.

Alias1, Alias2, ...: Optional alternative names recognized during parsing.

Usage Examples:

Map OID 2.5.4.5 to SERIALNUMBER: Config("XMLRDNDescriptorName[2.5.4.5]=SERIALNUMBER");

Map OID 1.2.840.113549.1.9.1 to E, with aliases EMAIL and EMAILADDRESS: Config("XMLRDNDescriptorName[1.2.840.113549.1.9.1]=E,EMAIL,EMAILADDRESS");

XMLRDNDescriptorPriority[OID]:   Specifies the priority of descriptor names associated with a specific OID.

This property specifies the priority of descriptor names associated with a specific OID that allows to reorder descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during signing.

XMLRDNDescriptorReverseOrder:   Specifies whether to reverse the order of descriptors in RDN.

Specifies whether to reverse the order of descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during XML signing. By default, this property is set to true (as specified in RFC 2253, 2.1).

XMLRDNDescriptorSeparator:   Specifies the separator used between descriptors in RDN.

Specifies the separator used between descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during XML signing. By default, this property is set to ", " value.

Trappable Errors (SSHKeyManager Class)

SSHKeyManager Errors

1048577   Invalid parameter (SB_ERROR_INVALID_PARAMETER)
1048578   Invalid configuration (SB_ERROR_INVALID_SETUP)
1048579   Invalid state (SB_ERROR_INVALID_STATE)
1048580   Invalid value (SB_ERROR_INVALID_VALUE)
1048581   Private key not found (SB_ERROR_NO_PRIVATE_KEY)
1048582   Cancelled by the user (SB_ERROR_CANCELLED_BY_USER)
1048583   The file was not found (SB_ERROR_NO_SUCH_FILE)
1048584   Unsupported feature or operation (SB_ERROR_UNSUPPORTED_FEATURE)
1048585   General error (SB_ERROR_GENERAL_ERROR)
34603009   Failed to loaded the trusted keys (SB_ERROR_SSH_INVALID_KEY)
34603010   Other operation is in progress (SB_ERROR_SSH_BUSY)
34603011   Command execution failed (SB_ERROR_SSH_EXEC_FAILED)
34603012   Failed to read data from the connection (SB_ERROR_SSH_READ_FAILED)
34603013   Failed to write data to the connection (SB_ERROR_SSH_WRITE_FAILED)
34603014   No signing key provided (SB_ERROR_SSH_NO_SIGNING_KEY)