Property | Type | Description | |
---|---|---|---|
OAEP | bool |
Property | Type | Description | |
---|---|---|---|
Factory |
Method | Description | |
---|---|---|
CryptoProviderExchangeRSA ( |
Create an instance of the RSA crypto provider.
|
|
CryptoProviderExchangeRSA ( int KeySize ) : System |
Return a provider with the specified key size.
|
|
Decrypt ( byte Input ) : byte[] |
Decrypt data block.
|
|
Encrypt ( byte Input ) : byte[] |
Encrypt data block. Block MUST be smaller than the key length or an exception will be thrown.
|
|
FindLocal ( string UDF ) : bool |
Locate private key in local key store.
|
|
Generate ( KeySecurity KeySecurity ) : void |
Generate a new RSA Key Pair with the Key size specified when the instance was created.
|
Method | Description | |
---|---|---|
Factory ( int KeySize, CryptoAlgorithmID DigestAlgorithm ) : |
public CryptoProviderExchangeRSA ( |
||
RSAKeyPair | RSAKeyPair to use. | |
return | System |
public CryptoProviderExchangeRSA ( int KeySize ) : System | ||
KeySize | int | Key length in bits. |
return | System |
public Decrypt ( byte Input ) : byte[] | ||
Input | byte | Data to decrypt. |
return | byte[] |
public Encrypt ( byte Input ) : byte[] | ||
Input | byte | Data to encrypt. |
return | byte[] |
public FindLocal ( string UDF ) : bool | ||
UDF | string | Fingerprint of key |
return | bool |
public Generate ( KeySecurity KeySecurity ) : void | ||
KeySecurity | KeySecurity | |
return | void |