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:
- P
- G
- Y
The component also includes the PublicKey field 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:
- P
- G
- Y
- X
Fields
Constructors
[VB.NET] Public ElgamalKey() [C#] public ElgamalKey();
The default constructor creates a new ElgamalKey instance but does not assign a public or private key.
[VB.NET] Public ElgamalKey(ByVal P As String, ByVal G As String, ByVal Y As String) [C#] public ElgamalKey(byte[] P, byte[] G, byte[] Y);
The public key constructor assigns an existing public key.
[VB.NET] Public ElgamalKey(ByVal P As String, ByVal G As String, ByVal Y As String, ByVal X As String) [C#] public ElgamalKey(byte[] P, byte[] G, byte[] Y, byte[] X);
The private key constructor assigns an existing private key.