PGPKeyManager Component
Properties Methods Events Config Settings Errors
The PGPKeyManager component manages PGP keys.
Syntax
nsoftware.SecureBlackbox.PGPKeyManager
Remarks
PGPKeyManager allows you to load, save, generate, import, and export PGP keys.
Property List
The following is the full list of the properties of the component with short descriptions. Click on the links for further details.
Key | The key to manipulate on. |
PinnedKey | A PGP key that is being manipulated on. |
Signatures | Signatures available in the key. |
SigningKey | A PGP key that is being manipulated on. |
Subkeys | PGP subkeys available in the key. |
Users | Users available in the key. |
Method List
The following is the full list of the methods of the component with short descriptions. Click on the links for further details.
ChangePassphrase | Changes the password of the secret key. |
ChangeProtection | Changes the protection level of the secret key. |
CheckPassphrase | Checks if the password matches the secret key. |
Config | Sets or retrieves a configuration setting. |
CreateKey | Generates a new key. |
CreateSubkey | Generates a new subkey. |
CreateUser | Adds a user to an existing key. |
DoAction | Performs an additional action. |
ExportBytes | Serializes the key to a byte array. |
ExportToFile | Exports the key to a file. |
ExportToStream | Exports the key to a stream. |
GeneratePair | Generates a new pair of PGP keys. |
ImportBytes | Loads a key from a byte array. |
ImportFromFile | Loads a key from a file. |
ImportFromStream | Loads a key from a stream. |
ImportPinned | Loads a key from a pinned key object. |
RemoveSignature | Unbinds the specified signature from the key, subkey or user. |
RemoveSubkey | Removes the specified subkey from the key. |
RemoveUser | Unbinds the specified user from the key. |
Reset | Creates a new empty keyring. |
RevokeKey | Revokes the key. |
RevokeSubkey | Revokes the key's subkey. |
RevokeUser | Revokes a user certification. |
SignKey | Sign the key. |
SignSubkey | Sign the key's subkey. |
SignUser | Sign a user certification. |
Verify | Verifies the integrity of a key signature. |
Event List
The following is the full list of the events fired by the component with short descriptions. Click on the links for further details.
Error | Information about errors during PGP key management. |
KeyPassphraseNeeded | Requests a key protection password from the application. |
Notification | This event notifies the application about an underlying control flow event. |
Config Settings
The following is a list of config settings for the component with short descriptions. Click on the links for further details.
Armor | Enables or disables ASCII armouring. |
ArmorBoundary | Specifies the armour boundary/title. |
ArmorHeaders | Specifies armour headers. |
HashAlgorithm | TBD. |
KeyHashAlgorithm | TBD. |
RawKeyFormat | TBD. |
SignatureCreationTime | TBD. |
SignatureExpirationTime | TBD. |
SignatureHashAlgorithm | TBD. |
SubkeyIndex | TBD. |
UseLongKeyIDs | TBD. |
ASN1UseGlobalTagCache | Controls whether ASN.1 module should use a global object cache. |
AssignSystemSmartCardPins | Specifies whether CSP-level PINs should be assigned to CNG keys. |
CheckKeyIntegrityBeforeUse | Enables or disable private key integrity check before use. |
CookieCaching | Specifies whether a cookie cache should be used for HTTP(S) transports. |
Cookies | Gets or sets local cookies for the component. |
DefDeriveKeyIterations | Specifies the default key derivation algorithm iteration count. |
DNSLocalSuffix | The suffix to assign for TLD names. |
EnableClientSideSSLFFDHE | Enables or disables finite field DHE key exchange support in TLS clients. |
GlobalCookies | Gets or sets global cookies for all the HTTP transports. |
HardwareCryptoUsePolicy | The hardware crypto usage policy. |
HttpUserAgent | Specifies the user agent name to be used by all HTTP clients. |
HttpVersion | The HTTP version to use in any inner HTTP client components created. |
IgnoreExpiredMSCTLSigningCert | Whether to tolerate the expired Windows Update signing certificate. |
ListDelimiter | The delimiter character for multi-element lists. |
LogDestination | Specifies the debug log destination. |
LogDetails | Specifies the debug log details to dump. |
LogFile | Specifies the debug log filename. |
LogFilters | Specifies the debug log filters. |
LogFlushMode | Specifies the log flush mode. |
LogLevel | Specifies the debug log level. |
LogMaxEventCount | Specifies the maximum number of events to cache before further action is taken. |
LogRotationMode | Specifies the log rotation mode. |
MaxASN1BufferLength | Specifies the maximal allowed length for ASN.1 primitive tag data. |
MaxASN1TreeDepth | Specifies the maximal depth for processed ASN.1 trees. |
OCSPHashAlgorithm | Specifies the hash algorithm to be used to identify certificates in OCSP requests. |
OldClientSideRSAFallback | Specifies whether the SSH client should use a SHA1 fallback. |
ProductVersion | Returns the version of the SecureBlackbox library. |
ServerSSLDHKeyLength | Sets the size of the TLS DHE key exchange group. |
StaticDNS | Specifies whether static DNS rules should be used. |
StaticIPAddress[domain] | Gets or sets an IP address for the specified domain name. |
StaticIPAddresses | Gets or sets all the static DNS rules. |
Tag | Allows to store any custom data. |
TLSSessionGroup | Specifies the group name of TLS sessions to be used for session resumption. |
TLSSessionLifetime | Specifies lifetime in seconds of the cached TLS session. |
TLSSessionPurgeInterval | Specifies how often the session cache should remove the expired TLS sessions. |
UseInternalRandom | Switches between SecureBlackbox-own and platform PRNGs. |
UseLegacyAdESValidation | Enables legacy AdES validation mode. |
UseOwnDNSResolver | Specifies whether the client components should use own DNS resolver. |
UseSharedSystemStorages | Specifies whether the validation engine should use a global per-process copy of the system certificate stores. |
UseSystemNativeSizeCalculation | An internal CryptoAPI access tweak. |
UseSystemOAEPAndPSS | Enforces or disables the use of system-driven RSA OAEP and PSS computations. |
UseSystemRandom | Enables or disables the use of the OS PRNG. |
Key Property (PGPKeyManager Component)
The key to manipulate on.
Syntax
Remarks
Use this property to specify the key to perform operations on.
This property is read-only.
Please refer to the PGPKey type for a complete list of fields.PinnedKey Property (PGPKeyManager Component)
A PGP key that is being manipulated on.
Syntax
Remarks
Use this property to specify a key to perform operations on, such as adding.
This property is not available at design time.
Please refer to the PGPKey type for a complete list of fields.Signatures Property (PGPKeyManager Component)
Signatures available in the key.
Syntax
public PGPSignatureList Signatures { get; }
Public ReadOnly Property Signatures As PGPSignatureList
Remarks
This property populates a collection of all signatures contained in the key.
This property is read-only and not available at design time.
Please refer to the PGPSignature type for a complete list of fields.SigningKey Property (PGPKeyManager Component)
A PGP key that is being manipulated on.
Syntax
Remarks
Use this property to specify a key to perform operations on, such as adding.
This property is not available at design time.
Please refer to the PGPKey type for a complete list of fields.Subkeys Property (PGPKeyManager Component)
PGP subkeys available in the key.
Syntax
public PGPKeyList Subkeys { get; }
Public ReadOnly Property Subkeys As PGPKeyList
Remarks
This property populates a collection of all subkeys contained in the key.
This property is read-only and not available at design time.
Please refer to the PGPKey type for a complete list of fields.Users Property (PGPKeyManager Component)
Users available in the key.
Syntax
public PGPUserList Users { get; }
Public ReadOnly Property Users As PGPUserList
Remarks
This property populates a collection of all users contained in the key.
This property is read-only and not available at design time.
Please refer to the PGPUser type for a complete list of fields.ChangePassphrase Method (PGPKeyManager Component)
Changes the password of the secret key.
Syntax
Remarks
Call this method to change the password that protects the secret key.
ChangeProtection Method (PGPKeyManager Component)
Changes the protection level of the secret key.
Syntax
Remarks
Use this method to change the protection level of the Key.
OldPassphrase specifies the current password to decrypt the key, NewPassphrase is the new password for the key, ProtType is the new protection type (see Protection for more details), EncAlgorithm is the key encryption algorithm, and
SB_PGP_SYMMETRIC_ALGORITHM_PLAINTEXT | Plaintext | |
SB_PGP_SYMMETRIC_ALGORITHM_IDEA | Idea | |
SB_PGP_SYMMETRIC_ALGORITHM_3DES | 3DES | |
SB_PGP_SYMMETRIC_ALGORITHM_CAST5 | CAST5 | |
SB_PGP_SYMMETRIC_ALGORITHM_BLOWFISH | Blowfish | |
SB_PGP_SYMMETRIC_ALGORITHM_AES128 | AES128 | |
SB_PGP_SYMMETRIC_ALGORITHM_AES192 | AES192 | |
SB_PGP_SYMMETRIC_ALGORITHM_AES256 | AES256 | |
SB_PGP_SYMMETRIC_ALGORITHM_TWOFISH256 | Twofish256 |
SB_HASH_ALGORITHM_MD5 | MD5 | |
SB_HASH_ALGORITHM_RIPEMD160 | RIPEMD160 | |
SB_HASH_ALGORITHM_SHA1 | SHA1 | |
SB_HASH_ALGORITHM_SHA224 | SHA224 | |
SB_HASH_ALGORITHM_SHA256 | SHA256 | |
SB_HASH_ALGORITHM_SHA384 | SHA384 | |
SB_HASH_ALGORITHM_SHA512 | SHA512 | |
SB_HASH_ALGORITHM_SHA3_256 | SHA3_256 | |
SB_HASH_ALGORITHM_SHA3_384 | SHA3_384 | |
SB_HASH_ALGORITHM_SHA3_512 | SHA3_512 |
CheckPassphrase Method (PGPKeyManager Component)
Checks if the password matches the secret key.
Syntax
Remarks
Use this method to check if a password can decrypt the Key.
Config Method (PGPKeyManager Component)
Sets or retrieves a configuration setting.
Syntax
Remarks
Config is a generic method available in every component. It is used to set and retrieve configuration settings for the component.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, 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.
CreateKey Method (PGPKeyManager Component)
Generates a new key.
Syntax
Remarks
Use this method to generate a new key with the provided parameters.
CreateSubkey Method (PGPKeyManager Component)
Generates a new subkey.
Syntax
Remarks
Use this method to generate a new subkey with the provided parameters.
CreateUser Method (PGPKeyManager Component)
Adds a user to an existing key.
Syntax
Remarks
Use this method to add a user to an existing key. A typical format for a PGP key usage is "Name <email>", for example "John Johnson <john@johnson.com>".
DoAction Method (PGPKeyManager Component)
Performs an additional action.
Syntax
Remarks
DoAction is a generic method available in every component. 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;....
ExportBytes Method (PGPKeyManager Component)
Serializes the key to a byte array.
Syntax
Remarks
Use this method to save the Key (both the public and secret parts) to a byte array.
ExportToFile Method (PGPKeyManager Component)
Exports the key to a file.
Syntax
Remarks
Use this method to save the Key (both the public and secret parts) to the file specified in Filename.
ExportToStream Method (PGPKeyManager Component)
Exports the key to a stream.
Syntax
public void ExportToStream(System.IO.Stream keyStream, bool secret);
Public Sub ExportToStream(ByVal KeyStream As System.IO.Stream, ByVal Secret As Boolean)
Remarks
Use this method to save the Key (both the public and secret parts) to a stream pointed by Stream.
GeneratePair Method (PGPKeyManager Component)
Generates a new pair of PGP keys.
Syntax
Remarks
Use this method to create a standard key-subkey pair. This is the primary method for generating conformant PGP keys.
Pass the user ID of the new key via the Username property. This typically should be in the format of User Name <user@email>, for example Robert Frost <robert@frost.com>, but generally can be an arbitrary text string.
This method generates a 'standard' keypair based on the Version and Strength parameters. This can range from RSA keys for version 3 to strong Ed25519 keys for version 6.
The following PGP key versions and strengths are supported:
pvDefault | 0 | The default version (situation-specific) |
pv3 | 3 | Version 3 |
pv4 | 4 | Version 4 |
pv5 | 5 | Version 5 |
pv6 | 6 | Version 6 |
psNormal | 0 | Normal strength |
psStrong | 1 | Increased strength |
Provide the key encryption password and the validity period in days via the Password and ValidTo parameters.
ImportBytes Method (PGPKeyManager Component)
Loads a key from a byte array.
Syntax
Remarks
Use this method to load a key, either public or secret, from a byte array.
ImportFromFile Method (PGPKeyManager Component)
Loads a key from a file.
Syntax
Remarks
Use this method to load a key, either public or secret, from a file.
ImportFromStream Method (PGPKeyManager Component)
Loads a key from a stream.
Syntax
public void ImportFromStream(System.IO.Stream keyStream);
Public Sub ImportFromStream(ByVal KeyStream As System.IO.Stream)
Remarks
Use this method to load a key, either public or secret, from a stream.
ImportPinned Method (PGPKeyManager Component)
Loads a key from a pinned key object.
Syntax
public void ImportPinned();
Public Sub ImportPinned()
Remarks
Use this method to load a PGP key from a PinnedKey object. This is an easy way to import a key object from a keyring.
RemoveSignature Method (PGPKeyManager Component)
Unbinds the specified signature from the key, subkey or user.
Syntax
Remarks
Use this method to remove the specified signature from the list of Signatures bound to the key, subkey or user.
RemoveSubkey Method (PGPKeyManager Component)
Removes the specified subkey from the key.
Syntax
Remarks
Use this method to remove the subkey referred by its Index from the key.
RemoveUser Method (PGPKeyManager Component)
Unbinds the specified user from the key.
Syntax
Remarks
Use this method to remove the specified user from the list of UserIDs bound to the key.
Reset Method (PGPKeyManager Component)
Creates a new empty keyring.
Syntax
public void Reset();
Public Sub Reset()
Remarks
Use this method to initialize a new empty keyring.
RevokeKey Method (PGPKeyManager Component)
Revokes the key.
Syntax
Remarks
Use this method to revoke the key by adding a revocation signature.
RevokeSubkey Method (PGPKeyManager Component)
Revokes the key's subkey.
Syntax
Remarks
Use this method to revoke the subkey with a given Index by adding a revocation signature.
RevokeUser Method (PGPKeyManager Component)
Revokes a user certification.
Syntax
Remarks
Use this method to revoke the user with the specified Index by adding a revocation signature to the key.
SignKey Method (PGPKeyManager Component)
Sign the key.
Syntax
Remarks
Use this method to sign the key.
SignSubkey Method (PGPKeyManager Component)
Sign the key's subkey.
Syntax
Remarks
Use this method to sign the subkey with a given Index.
SignUser Method (PGPKeyManager Component)
Sign a user certification.
Syntax
Remarks
Use this method to sign the user with the specified Index.
Verify Method (PGPKeyManager Component)
Verifies the integrity of a key signature.
Syntax
Remarks
Use this method to validate a key signature. Provide the index of the signature as a parameter.
Error Event (PGPKeyManager Component)
Information about errors during PGP key management.
Syntax
public event OnErrorHandler OnError; public delegate void OnErrorHandler(object sender, PGPKeyManagerErrorEventArgs e); public class PGPKeyManagerErrorEventArgs : EventArgs { public int ErrorCode { get; } public string Description { get; } }
Public Event OnError As OnErrorHandler Public Delegate Sub OnErrorHandler(sender As Object, e As PGPKeyManagerErrorEventArgs) Public Class PGPKeyManagerErrorEventArgs Inherits EventArgs Public ReadOnly Property ErrorCode As Integer Public ReadOnly Property Description As String End Class
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.
KeyPassphraseNeeded Event (PGPKeyManager Component)
Requests a key protection password from the application.
Syntax
public event OnKeyPassphraseNeededHandler OnKeyPassphraseNeeded; public delegate void OnKeyPassphraseNeededHandler(object sender, PGPKeyManagerKeyPassphraseNeededEventArgs e); public class PGPKeyManagerKeyPassphraseNeededEventArgs : EventArgs { public string KeyID { get; } public string UserID { get; } public bool MainKey { get; } public string Passphrase { get; set; } public bool Skip { get; set; } }
Public Event OnKeyPassphraseNeeded As OnKeyPassphraseNeededHandler Public Delegate Sub OnKeyPassphraseNeededHandler(sender As Object, e As PGPKeyManagerKeyPassphraseNeededEventArgs) Public Class PGPKeyManagerKeyPassphraseNeededEventArgs Inherits EventArgs Public ReadOnly Property KeyID As String Public ReadOnly Property UserID As String Public ReadOnly Property MainKey As Boolean Public Property Passphrase As String Public Property Skip As Boolean End Class
Remarks
The component fires this event to request a secret key passphrase from the application. Note that this event asks for a key protection passphrase rather than a message protection passphrase. The component fires it when it attempts to use a secret key to sign the data.
This event is fired for every protected secret key residing in SigningKeys. KeyID specifies the key for which the password is requested, and UserID identifies its user. MainKey tells whether the key is a master key or a subkey.
The handler should provide password via the Passphrase parameter, or set Skip to True to skip this key.
For each key KeyPassphraseNeeded is called in a loop until the correct password is provided or the maximum number of password attempts reached.
Notification Event (PGPKeyManager Component)
This event notifies the application about an underlying control flow event.
Syntax
public event OnNotificationHandler OnNotification; public delegate void OnNotificationHandler(object sender, PGPKeyManagerNotificationEventArgs e); public class PGPKeyManagerNotificationEventArgs : EventArgs { public string EventID { get; } public string EventParam { get; } }
Public Event OnNotification As OnNotificationHandler Public Delegate Sub OnNotificationHandler(sender As Object, e As PGPKeyManagerNotificationEventArgs) Public Class PGPKeyManagerNotificationEventArgs Inherits EventArgs Public ReadOnly Property EventID As String Public ReadOnly Property EventParam As String End Class
Remarks
The component fires this event to let the application know about some event, occurrence, or milestone in the component. 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 component, the exact action it is performing, or the document being processed, one or both may be omitted.
PGPKey Type
This container represents a PGP key.
Remarks
OpenPGP standard supports several types of keys. In our days, a typical OpenPGP keypair actually consists of two cryptographic keys: a primary key and a subkey. The primary key is normally used for signing, while the subkey is used for encryption.
While it is typical for PGP environments to use a primary key/subkey bundle, this is not a must. Sometimes you may come across standalone keys (mainly when dealing with older implementations), as well as whole key trees, each of those carrying a bunch of differently-purposed subkeys bound to the same primary key.
Algorithm-wise, OpenPGP keys also differ. Generally speaking, OpenPGP supports the following public key algorithms: RSA, Elgamal (often incorrectly referred to as DH), DSA, ECDH and ECDSA. When it comes to primary key/subkey bundles, DSA/Elgamal, RSA/RSA and ECDSA/ECDH pairs are typically used. Although there's no restriction on algorithm bundles, and, e.g. a ECDSA/Elgamal key bundle is perfectly possible, such combination is rarely used in practice.
A typical OpenPGP key is associated with some kind of user ID (Username). It is normally represented with a user's e-mail address, while in theory can be any piece of text. The secret part of the OpenPGP keypair is protected with a password (Passphrase).
Fields
BitsInKey
int (read-only)
Default: 2048
Indicates the key length in bits.
CanEncrypt
bool (read-only)
Default: False
Returns True if this key can be used for encryption.
CanSign
bool (read-only)
Default: False
Returns True if this key can be used for signing.
Curve
string (read-only)
Default: ""
Indicates the elliptic curve associated with a EC key.
Supported values:
SB_PGP_CURVE_P256 | P256 | |
SB_PGP_CURVE_P384 | P384 | |
SB_PGP_CURVE_P521 | P521 | |
SB_PGP_CURVE_ED25519 | ED25519 | |
SB_PGP_CURVE_CURVE25519 | CURVE25519 | |
SB_PGP_CURVE_BRAINPOOLP256R1 | BRAINPOOLP256 | |
SB_PGP_CURVE_BRAINPOOLP512R1 | BRAINPOOLP512 |
Enabled
bool
Default: False
Enables or disables this key for use in encryption or signing operation.
EncryptionAlgorithm
string (read-only)
Default: "AES128"
Indicates the symmetric algorithm used to encrypt the secret key.
IsPublic
bool (read-only)
Default: False
Returns True if this key is a public key, and False otherwise.
IsSecret
bool (read-only)
Default: False
Returns True if this key is a secret key, and False otherwise.
IsSubkey
bool (read-only)
Default: False
Returns True if this key is a subkey of another key, and False otherwise.
KeyFP
string (read-only)
Default: ""
The 20-byte fingerprint (hash value) of this key.
KeyFP could be used to distinguish two keys with the same KeyID.
KeyID
string (read-only)
Default: ""
Contains a 8-byte key identifier.
It is quite rare that IDs of two keys collide. If that happens, their fingerprints (KeyFP) can be used for distinguish between the keys. Please note that many PGP implementations show only 4 lowest bytes of the KeyID to the user.
Passphrase
string
Default: ""
The key protection password.
PassphraseValid
bool (read-only)
Default: False
Use this property to check whether the specified Passphrase is valid and can be used to unlock the secret key.
PrimaryKeyID
string (read-only)
Default: ""
If this key is a subkey (IsSubkey returns True), this field contains the identifier of the subkey's primary key.
Protection
PGPProtectionTypes (read-only)
Default: 0
Specifies the level of protection applied to the secret key.
Allowed values:
pptNone | 0 | Key is not encrypted |
pptLow | 1 | Only the password hash is used to derive the secret key |
pptNormal | 2 | Password hash with salt is used to derive the secret key |
pptHigh | 3 | Hash from multiple passwords and salt are used for key derivation |
PublicKeyAlgorithm
string (read-only)
Default: ""
Specifies the asymmetric algorithm of the key.
QBits
int (read-only)
Default: 0
The length of the DSA Q (legitimate range: 160-512).
This parameter corresponds to the hash algorithm used with the key. For example, if the value of Q is 256, SHA-256 will be used.
Timestamp
string (read-only)
Default: ""
Use this property to check the time the key was generated. The date and time are stored and retrieved in Universal Coordinate Time (UTC).
Username
string (read-only)
Default: ""
Specifies the name of the user bound to this key.
The PGP username is typically represented with a full name and an email address, but generally can be any non-empty string.
ValidTo
string (read-only)
Default: "0"
Provide accurate expiration moment indication. This is different to expires property which only contains expiration time in days in old keys.
Version
int (read-only)
Default: 0
Indicates the key version.
The key version refers to the version of the public-key packet format as defined in RFC 4880.
Only four versions are currently allowed here: 3, 4, 5 and 6. It is recommended that all new keys are created with version of 6.
Constructors
Creates an empty PGP key object.
Create a PGP key object from a key file.
PGPSignature Type
A container for PGP signature properties.
Remarks
PGPSignature contains details and validation information for a PGP signature.
Fields
CertificationType
PGPCertificationTypes (read-only)
Default: 0
Specifies the type of a UserID signature.
pctGeneric | 0 | Generic certification of a User ID and Public Key packet. The issuer of this certification does not make any particular assertion as to how well the certifier has checked that the owner of the key is in fact the person described by the User ID. By default user certifications use Generic type. |
pctPersona | 1 | Persona certification of a User ID and Public Key packet. The issuer of this certification has not done any verification of the claim that the owner of this key corresponds to the specified User ID. |
pctCasual | 2 | Casual certification of a User ID and a Public Key packet. The issuer of this certification has done some casual verification of the claim of identity. |
pctPositive | 3 | Positive certification of a User ID and a Public Key packet. The issuer of this certification has done substantial verification of the claim of identity. |
CreationTime
string (read-only)
Default: ""
The time when the signature was created, in Universal Coordinated Time (UTC).
ExpirationTime
int (read-only)
Default: 0
Specifies signature expiration time, in seconds since its creation time (CreationTime).
Ths property set to 0 indicates that the signature never expires.
Exportable
bool (read-only)
Default: False
Specifies whether a certification signature is "exportable", meaning it can be used by entities other than the signature's issuer.
HashAlgorithm
string (read-only)
Default: ""
Specifies the hash algorithm used in the signature.
HashMark
int (read-only)
Default: 0
Returns the hash mark attribute of a signature.
Check this property to get a hash mark of a signature.
KeyExpirationTime
int (read-only)
Default: 0
The number of seconds after which the signed key will expire.
KeyFlags
int (read-only)
Default: 0
Returns the key flags included in the signature.
Use this property to retrieve the key flags stored in the key signature.
LegacyFormat
bool (read-only)
Default: False
Indicates whether signature uses PGP 2.6.x-compatible packet format.
The signature is fully compatible with the 'old' format only if it has version 3, uses MD5 hash algorithm, RSA public key algorithm, and its key length is not greater than 1024 bits.
PolicyURL
string (read-only)
Default: ""
Contains the URL of the signature policy.
PreferredAlgorithms
string (read-only)
Default: ""
Contains a list of algorithms preferred by the signed key holder.
PrimaryUserID
bool (read-only)
Default: False
Indicates whether the UserID covered by the signature is the main user id for this key.
ReasonForRevocation
string (read-only)
Default: ""
Describes the reason why the key or the certificate was revoked.
Revocable
bool (read-only)
Default: False
Specifies whether the signature can be revoked.
Revocation
bool (read-only)
Default: False
Indicates whether or not the signature is a revocation signature.
SignatureClass
PGPSignatureClasses (read-only)
Default: 0
Indicates the signature class.
pscDocument | 0 | Signature over binary file |
pscTextDocument | 1 | Signature over text |
pscStandalone | 2 | A standalone signature |
pscUIDGeneric | 3 | User certification signature |
pscUIDPersona | 4 | User certification signature (persona) |
pscUIDCasual | 5 | User certification signature (casual) |
pscUIDPositive | 6 | User certification signature (positive) |
pscSubkeyBinding | 7 | Subkey binding signature |
pscPrimaryKeyBinding | 8 | Primary key binding signature |
pscDirectKey | 9 | Direct signature over a public key |
pscKeyRevocation | 10 | Key revocation |
pscSubkeyRevocation | 11 | Subkey revocation |
pscCertRevocation | 12 | User revocation |
pscTimestamp | 13 | Timestamp signature |
pscThirdParty | 14 | Third-party signature |
pscNotSpecified | 15 | Signature type not provided |
SignerKeyID
string (read-only)
Default: ""
Indicates the KeyID of the signing key.
SignerUserID
string (read-only)
Default: ""
Indicates the UserID associated with the signing key.
StrictlyValid
bool (read-only)
Default: False
Returns True if this signature is valid in a strict way (no compatibility relaxations).
Target
string (read-only)
Default: ""
Indicates the KeyID or Username of the target key or user.
TextSignature
bool (read-only)
Default: False
Indicates whether or not the signature is made over a text document.
TrustAmount
int (read-only)
Default: 0
Specifies the amount of trust assigned by this signature.
Specifies the amount of trust, in range 0-255, interpreted such that values less than 120 indicate partial trust and values of 120 or greater indicate complete trust.
TrustLevel
int (read-only)
Default: 0
The trust level assigned by this signature.
Level 1 means that the signed key is asserted to be a valid trusted introducer, with the 2nd octet of the body specifying the degree of trust. Level n means that the signed key is asserted to be trusted to issue level (n-1)-trust signatures.
Validated
bool (read-only)
Default: False
Whether the signature has been validated.
Validity
SignatureValidities (read-only)
Default: 0
Provides the validity status of the signature if the signature has been validated.
svtValid | 0 | The signature is valid |
svtUnknown | 1 | Signature validity is unknown |
svtCorrupted | 2 | The signature is corrupted |
svtSignerNotFound | 3 | Failed to acquire the signing certificate. The signature cannot be validated. |
svtFailure | 4 | General failure |
svtReferenceCorrupted | 5 | Reference corrupted (XML-based signatures only) |
Version
int (read-only)
Default: 0
Indicates the signature version.
RFC 4880 defines two versions for PGP signatures: 3 and 4.
Constructors
public PGPSignature();
Public PGPSignature()
Creates an empty PGPSignature object.
PGPUser Type
A container for PGP user properties.
Remarks
PGPUser contains details information for a PGP user.
Fields
Username
string (read-only)
Default: ""
Specifies the user name of user.
Constructors
Creates an empty PGPUser object.
Config Settings (PGPKeyManager Component)
The component 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 component, access to these internal properties is provided through the Config method.PGPKeyManager Config Settings
Base Config Settings
You can switch this property off to improve performance if your project only uses known, good private keys.
Supported values are:
off | No caching (default) | |
local | Local caching | |
global | Global caching |
This setting only applies to sessions negotiated with TLS version 1.3.
Supported values are:
file | File | |
console | Console | |
systemlog | System Log (supported for Android only) | |
debugger | Debugger (supported for VCL for Windows and .Net) |
Supported values are:
time | Current time | |
level | Level | |
package | Package name | |
module | Module name | |
class | Class name | |
method | Method name | |
threadid | Thread Id | |
contenttype | Content type | |
content | Content | |
all | All details |
Supported filter names are:
exclude-package | Exclude a package specified in the value | |
exclude-module | Exclude a module specified in the value | |
exclude-class | Exclude a class specified in the value | |
exclude-method | Exclude a method specified in the value | |
include-package | Include a package specified in the value | |
include-module | Include a module specified in the value | |
include-class | Include a class specified in the value | |
include-method | Include a method specified in the value |
none | No flush (caching only) | |
immediate | Immediate flush (real-time logging) | |
maxcount | Flush cached entries upon reaching LogMaxEventCount entries in the cache. |
Supported values are:
none | None (by default) | |
fatal | Severe errors that cause premature termination. | |
error | Other runtime errors or unexpected conditions. | |
warning | Use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong". | |
info | Interesting runtime events (startup/shutdown). | |
debug | Detailed information on flow of through the system. | |
trace | More detailed information. |
The default value of this setting is 100.
none | No rotation | |
deleteolder | Delete older entries from the cache upon reaching LogMaxEventCount | |
keepolder | Keep older entries in the cache upon reaching LogMaxEventCount (newer entries are discarded) |
Supported values are:
none | No static DNS rules (default) | |
local | Local static DNS rules | |
global | Global static DNS rules |
This setting only applies to certificates originating from a Windows system store.
Trappable Errors (PGPKeyManager Component)
PGPKeyManager 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) |
27262977 | The file was not found (SB_ERROR_PGP_FILE_NOT_EXISTS) |
27262978 | Invalid signing key (SB_ERROR_PGP_INVALID_KEY) |
27262980 | No secret key is available (SB_ERROR_PGP_NO_SECRET_KEY) |
27262982 | The operation is not supported on a subkey (SB_ERROR_PGP_OPERATION_ON_SUBKEY) |