Parameters Property
Parameters
Gets the RSA cryptographic parameters required for the private key operations.
C#
public RSAParameters Parameters { get; }
Property Value
Type | Description |
---|---|
RSAParameters | A structure containing RSA parameters, including Modulus, Exponent, D, P, Q, DP, DQ, and InverseQ values. |
Remarks
This property provides access to the fundamental mathematical components needed for RSA private key operations. The parameters are used in cryptographic operations such as decryption and digital signature creation.