RSAParameters

RSAParametersserializable

System.Security.Cryptography (mscorlib.dll)struct
public struct RSAParameters {
// Public Instance Fields
   public byte[  ] D;
   public byte[  ] DP;
   public byte[  ] DQ;
   public byte[  ] Exponent;
   public byte[  ] InverseQ;
   public byte[  ] Modulus;
   public byte[  ] P;
   public byte[  ] Q;
}

This structure represents the parameters of an RSA key, expressed as a set of Byte arrays. Key parameters are exported from the RSA class with the RSA.ExportParameters( ) method. Key parameters are imported into the RSA class with the RSA.ImportParameters( ) method.

Hierarchy

System.Object System.ValueType RSAParameters

Returned By

RSA.ExportParameters( )

Passed To

RSA.ImportParameters( )



    Part V: API Quick Reference