RSAKey Type
Contains the typical parameters for the RSA algorithm.
Remarks
This type is made up of fields that represent the private and public key parameters used by the RSA algorithm.
RSA Keys
A RSA 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 sides of the encryption/signing and decryption/signature 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 may be represented in one of two ways. Both are mathematically equivalent. Private key format 1:
Private key format 2 is simpler but has decreased performance when decrypting and signing. This format is: 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
Constructors
constructor Create();
The default constructor creates a new RSAKey instance but does not assign a public or private key.
constructor Create(valModulus: TBytes; valExponent: TBytes);
The public key constructor assigns an existing public key.
constructor Create(valModulus: TBytes; valD: TBytes; valP: TBytes; valQ: TBytes; valDP: TBytes; valDQ: TBytes);
The private key constructor assigns an existing private key. Any valid combination of parameters representing a private key may be supplied. See the description at the top of this page for details on RSA private key formats.