ElgamalKey Type
Contains the typical parameters for the Elgamal algorithm.
Remarks
This type is made up of fields that represent the private and public key parameters used by the Elgamal algorithm.
An Elgamal key is made up of a number of individual parameters.
The public key consists of the following parameters:
The component also includes the PublicKey property which holds the PEM formatted public key for ease of use. This is helpful if you are in control of both signature creation and verification process. When sending the public key to a recipient note that not all implementations will support using the PEM formatted value in PublicKey in which case the individual parameters must be sent.
The private key consists of the following parameters:
The component also include the PrivateKey property which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily.Fields
G String |
Represents the G parameter for the Elgamal algorithm. |
GB TBytes |
Represents the G parameter for the Elgamal algorithm. |
P String |
Represents the P parameter for the Elgamal algorithm. |
PB TBytes |
Represents the P parameter for the Elgamal algorithm. |
PrivateKey String |
This property is a PEM formatted private key. The purpose of this property is to allow easier management of the private key parameters by using only a single value. |
PublicKey String |
This property is a PEM formatted public key. The purpose of this property is to allow easier management of the public key parameters by using only a single value. |
X String |
Represents the X parameter for the Elgamal algorithm. |
XB TBytes |
Represents the X parameter for the Elgamal algorithm. |
Y String |
Represents the Y parameter for the Elgamal algorithm. |
YB TBytes |
Represents the Y parameter for the Elgamal algorithm. |
Constructors
constructor Create();
The default constructor creates a new ElgamalKey instance but does not assign a public or private key.
constructor Create(valP: TBytes; valG: TBytes; valY: TBytes);
The public key constructor assigns an existing public key.
constructor Create(valP: TBytes; valG: TBytes; valY: TBytes; valX: TBytes);
The private key constructor assigns an existing private key.