ElGamal Component
Properties Methods Events Config Settings Errors
Encrypt and decrypt data with the ElGamal asymmetric key encryption algorithm for public-key cryptography.
Syntax
nsoftware.IPWorksEncrypt.ElGamal
Remarks
The ElGamal component is used to encrypt/decrypt data with the ElGamal asymmetric key encryption algorithm for public-key cryptography.
To begin, you must either specify an existing key or create a new key. Existing public or private keys may be specified by setting Key. To create a new key pair, call CreateKey.
After specifying a key, specify the data you wish to encrypt or decrypt. Call the Encrypt or Decrypt method to perform the operation.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
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 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:
The component also includes the PrivateKey field which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily.Property List
The following is the full list of the properties of the component with short descriptions. Click on the links for further details.
InputFile | The file to process. |
InputMessage | The message to process. |
Key | The ElGamal key used for decryption. |
OutputFile | The output file when encrypting or decrypting. |
OutputMessage | The output message after processing. |
Overwrite | Indicates whether or not the component should overwrite files. |
RecipientKey | The recipient's public key used when encrypting. |
UseHex | Whether input or output is hex encoded. |
Method List
The following is the full list of the methods of the component with short descriptions. Click on the links for further details.
Config | Sets or retrieves a configuration setting. |
CreateKey | Creates a new key. |
Decrypt | Decrypts the input data using the specified private key. |
Encrypt | Encrypts the input data using the recipient's public key. |
Reset | Resets the component. |
SetInputStream | Sets the stream from which the component will read data to encrypt or decrypt. |
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 | Fired when information is available about errors during data delivery. |
Config Settings
The following is a list of config settings for the component with short descriptions. Click on the links for further details.
CloseInputStreamAfterProcessing | Determines whether or not the input stream is closed after processing. |
CloseOutputStreamAfterProcessing | Determines whether or not the output stream is closed after processing. |
KeySize | The size, in bits, of the secret key. |
BuildInfo | Information about the product's build. |
GUIAvailable | Whether or not a message loop is available for processing events. |
LicenseInfo | Information about the current license. |
MaskSensitiveData | Whether sensitive data is masked in log messages. |
UseFIPSCompliantAPI | Tells the component whether or not to use FIPS certified APIs. |
UseInternalSecurityAPI | Whether or not to use the system security libraries or an internal implementation. |
InputFile Property (ElGamal Component)
The file to process.
Syntax
Default Value
""
Remarks
This property specifies the file to be processed. Set this property to the full or relative path to the file which will be processed.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
- SetInputStream
- InputFile
- InputMessage
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
InputMessage Property (ElGamal Component)
The message to process.
Syntax
Default Value
""
Remarks
This property specifies the message to be processed.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
- SetInputStream
- InputFile
- InputMessage
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
Key Property (ElGamal Component)
The ElGamal key used for decryption.
Syntax
public ElGamalKey Key { get; set; }
Public Property Key As ElGamalKey
Remarks
This property specifies the ElGamal key used to decrypt data. This property must be set before calling Decrypt.
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 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:
The component also includes the PrivateKey field which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily. Please refer to the ElGamalKey type for a complete list of fields.OutputFile Property (ElGamal Component)
The output file when encrypting or decrypting.
Syntax
Default Value
""
Remarks
This property specifies the file to which the output will be written when Encrypt or Decrypt is called. This may be set to an absolute or relative path.
This property is only applicable to Encrypt and Decrypt.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
OutputMessage Property (ElGamal Component)
The output message after processing.
Syntax
Default Value
""
Remarks
This property will be populated with the output from the operation if OutputFile and SetOutputStream are not set.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
This property is read-only and not available at design time.
Overwrite Property (ElGamal Component)
Indicates whether or not the component should overwrite files.
Syntax
Default Value
False
Remarks
This property indicates whether or not the component will overwrite OutputFile. If Overwrite is False, an error will be thrown whenever OutputFile exists before an operation. The default value is False.
RecipientKey Property (ElGamal Component)
The recipient's public key used when encrypting.
Syntax
public ElGamalKey RecipientKey { get; set; }
Public Property RecipientKey As ElGamalKey
Remarks
This property specifies the recipient's public key. This property must be set before calling Encrypt.
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 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:
The component also includes the PrivateKey field which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily. Please refer to the ElGamalKey type for a complete list of fields.UseHex Property (ElGamal Component)
Whether input or output is hex encoded.
Syntax
Default Value
False
Remarks
This property specifies whether the encrypted data is hex encoded.
If set to True, when Encrypt is called the component will perform the encryption as normal and then hex encode the output. OutputMessage or OutputFile will hold hex encoded data.
If set to True, when Decrypt is called the component will expect InputMessage or InputFile to hold hex encoded data. The component will then hex decode the data and perform decryption as normal.
Config Method (ElGamal 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 (ElGamal Component)
Creates a new key.
Syntax
public void CreateKey(); Async Version public async Task CreateKey(); public async Task CreateKey(CancellationToken cancellationToken);
Public Sub CreateKey() Async Version Public Sub CreateKey() As Task Public Sub CreateKey(cancellationToken As CancellationToken) As Task
Remarks
This method creates a new public and private key.
When calling CreateKey the Key property is populated with a new private and public key.
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 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:
The component also includes the PrivateKey field which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily.Decrypt Method (ElGamal Component)
Decrypts the input data using the specified private key.
Syntax
public void Decrypt(); Async Version public async Task Decrypt(); public async Task Decrypt(CancellationToken cancellationToken);
Public Sub Decrypt() Async Version Public Sub Decrypt() As Task Public Sub Decrypt(cancellationToken As CancellationToken) As Task
Remarks
This method decrypts the input data using the private key specified in Key. Alternatively, a certificate may be specified by setting Certificate.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
Key Size and the Maximum Length of Data
RSA has an upper limit to the amount of data that can be encrypted or decrypted, also known as message length. This can typically be calculated as the size of the key minus the size of the RSA header and padding.
When not using OAEP, the following formula and table can be referenced. (RSA Key Bytes) - (Header Bytes) = Length of data, where Header Bytes is always 11.
RSA Key Length (bits) | Length (bits) | Length (bytes) |
1024 | 936 | 117 |
2048 | 1960 | 245 |
3072 | 2984 | 373 |
4096 | 4008 | 501 |
When using OAEP, the following formula and table can be referenced. (RSA Key Bytes) - (2 * Hash Length Bytes) - 2 = Length of data. The table below assumes SHA-256 for the hash, so Hash Length Bytes is 32.
RSA Key Length (bits) | Length (bits) | Length (bytes) |
1024 | 496 | 62 |
2048 | 1520 | 190 |
3072 | 2544 | 318 |
4096 | 3568 | 446 |
Encrypt Method (ElGamal Component)
Encrypts the input data using the recipient's public key.
Syntax
public void Encrypt(); Async Version public async Task Encrypt(); public async Task Encrypt(CancellationToken cancellationToken);
Public Sub Encrypt() Async Version Public Sub Encrypt() As Task Public Sub Encrypt(cancellationToken As CancellationToken) As Task
Remarks
This method encrypts the input data using the public key specified in RecipientKey. Alternatively, a certificate may be specified by setting RecipientCert.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
Key Size and the Maximum Length of Data
RSA has an upper limit to the amount of data that can be encrypted or decrypted, also known as message length. This can typically be calculated as the size of the key minus the size of the RSA header and padding.
When not using OAEP, the following formula and table can be referenced. (RSA Key Bytes) - (Header Bytes) = Length of data, where Header Bytes is always 11.
RSA Key Length (bits) | Length (bits) | Length (bytes) |
1024 | 936 | 117 |
2048 | 1960 | 245 |
3072 | 2984 | 373 |
4096 | 4008 | 501 |
When using OAEP, the following formula and table can be referenced. (RSA Key Bytes) - (2 * Hash Length Bytes) - 2 = Length of data. The table below assumes SHA-256 for the hash, so Hash Length Bytes is 32.
RSA Key Length (bits) | Length (bits) | Length (bytes) |
1024 | 496 | 62 |
2048 | 1520 | 190 |
3072 | 2544 | 318 |
4096 | 3568 | 446 |
Reset Method (ElGamal Component)
Resets the component.
Syntax
public void Reset(); Async Version public async Task Reset(); public async Task Reset(CancellationToken cancellationToken);
Public Sub Reset() Async Version Public Sub Reset() As Task Public Sub Reset(cancellationToken As CancellationToken) As Task
Remarks
When called, the component will reset all of its properties to their default values.
SetInputStream Method (ElGamal Component)
Sets the stream from which the component will read data to encrypt or decrypt.
Syntax
public void SetInputStream(System.IO.Stream inputStream); Async Version public async Task SetInputStream(System.IO.Stream inputStream); public async Task SetInputStream(System.IO.Stream inputStream, CancellationToken cancellationToken);
Public Sub SetInputStream(ByVal InputStream As System.IO.Stream) Async Version Public Sub SetInputStream(ByVal InputStream As System.IO.Stream) As Task Public Sub SetInputStream(ByVal InputStream As System.IO.Stream, cancellationToken As CancellationToken) As Task
Remarks
This method sets the stream from which the component will read data to encrypt or decrypt.
Input and Output Properties
The component will determine the source and destination of the input and output based on which properties are set.
The order in which the input properties are checked is as follows:
- SetInputStream
- InputFile
- InputMessage
When a valid source is found, the search stops. The order in which the output properties are checked is as follows:
- SetOutputStream
- OutputFile
- OutputMessage: The output data is written to this property if no other destination is specified.
When using streams, you may need to additionally set CloseInputStreamAfterProcessing or CloseOutputStreamAfterProcessing.
Error Event (ElGamal Component)
Fired when information is available about errors during data delivery.
Syntax
public event OnErrorHandler OnError; public delegate void OnErrorHandler(object sender, ElGamalErrorEventArgs e); public class ElGamalErrorEventArgs : EventArgs { public int ErrorCode { get; } public string Description { get; } }
Public Event OnError As OnErrorHandler Public Delegate Sub OnErrorHandler(sender As Object, e As ElGamalErrorEventArgs) Public Class ElGamalErrorEventArgs Inherits EventArgs Public ReadOnly Property ErrorCode As Integer Public ReadOnly Property Description As String End Class
Remarks
The Error event is fired in case of exceptional conditions during message processing. Normally the component throws an exception.
The ErrorCode parameter contains an error code, and the Description parameter contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
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 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:
The component also includes the PrivateKey field which holds the PEM formatted private key for ease of use. This is helpful for storing the private key more easily.Fields
G
string
Default: ""
Represents the G parameter for the ElGamal algorithm.
GB
byte []
Default: ""
Represents the G parameter for the ElGamal algorithm.
P
string
Default: ""
Represents the P parameter for the ElGamal algorithm.
PB
byte []
Default: ""
Represents the P parameter for the ElGamal algorithm.
PrivateKey
string
Default: ""
This field is a PEM formatted private key. The purpose of this field is to allow easier management of the private key parameters by using only a single value.
PublicKey
string
Default: ""
This field is a PEM formatted public key. The purpose of this field is to allow easier management of the public key parameters by using only a single value.
X
string
Default: ""
Represents the X parameter for the ElGamal algorithm.
XB
byte []
Default: ""
Represents the X parameter for the ElGamal algorithm.
Y
string
Default: ""
Represents the Y parameter for the ElGamal algorithm.
YB
byte []
Default: ""
Represents the Y parameter for the ElGamal algorithm.
Constructors
public ElGamalKey();
Public ElGamalKey()
The default constructor creates a new ElGamalKey instance but does not assign a public or private key.
public ElGamalKey(byte[] P, byte[] G, byte[] Y);
Public ElGamalKey(ByVal P As Byte(), ByVal G As Byte(), ByVal Y As Byte())
The public key constructor assigns an existing public key.
public ElGamalKey(byte[] P, byte[] G, byte[] Y, byte[] X);
Public ElGamalKey(ByVal P As Byte(), ByVal G As Byte(), ByVal Y As Byte(), ByVal X As Byte())
The private key constructor assigns an existing private key.
Config Settings (ElGamal 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.ElGamal Config Settings
Base Config Settings
In some non-GUI applications, an invalid message loop may be discovered that will result in errant behavior. In these cases, setting GUIAvailable to false will ensure that the component does not attempt to process external events.
- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
- Last Valid Build: The last valid build number for which the license will work.
This setting only works on these components: AS3Receiver, AS3Sender, Atom, Client(3DS), FTP, FTPServer, IMAP, OFTPClient, SSHClient, SCP, Server(3DS), Sexec, SFTP, SFTPServer, SSHServer, TCPClient, TCPServer.
FIPS mode can be enabled by setting the UseFIPSCompliantAPI configuration setting to true. This is a static setting that applies to all instances of all components of the toolkit within the process. It is recommended to enable or disable this setting once before the component has been used to establish a connection. Enabling FIPS while an instance of the component is active and connected may result in unexpected behavior.
For more details, please see the FIPS 140-2 Compliance article.
Note: This setting is applicable only on Windows.
Note: Enabling FIPS compliance requires a special license; please contact sales@nsoftware.com for details.
Setting this configuration setting to true tells the component to use the internal implementation instead of using the system security libraries.
On Windows, this setting is set to false by default. On Linux/macOS, this setting is set to true by default.
If using the .NET Standard Library, this setting will be true on all platforms. The .NET Standard library does not support using the system security libraries.
Note: This setting is static. The value set is applicable to all components used in the application.
When this value is set, the product's system dynamic link library (DLL) is no longer required as a reference, as all unmanaged code is stored in that file.
Trappable Errors (ElGamal Component)
ElGamal Errors
102 | No Key specified. |
104 | Cannot read or write file. |
105 | key parameters incorrect. |
111 | OutputFile already exists and Overwrite is False. |
112 | Invalid length of input message. |
304 | Cannot write file. |
305 | Cannot read file. |
306 | Cannot create file. |