Property | Type | Description | |
---|---|---|---|
AppendIV | bool | ||
AppendIntegrity | bool |
Method | Description | |
---|---|---|
Decrypt ( |
Start an encryption session with random key and IV.
|
|
Encrypt ( |
Encrypt the provided cryptoblob
|
|
Encrypt ( byte Data ) : |
Encrypt the provided cryptoblob
|
|
Process ( byte InputBuffer, int InputOffset, int Count ) : |
Processes the specified region of the specified byte array
|
|
StartDecrypt ( byte Key ) : void |
Start a decryption session with the specified key and implicit IV.
|
|
StartDecrypt ( byte Key, byte IV ) : void |
Start a decryption session with the specified key and IV.
|
|
StartEncrypt ( ) : void |
Start an encryption session with random key and IV.
|
|
StartEncrypt ( byte Key, byte IV ) : void |
Start an encryption session with the specified key and IV.
|
Method | Description | |
---|---|---|
CryptoProviderEncryption ( |
Constructor for initializing a delegate class.
|
protected CryptoProviderEncryption ( |
||
SymmetricAlgorithm | Cryptographic provider. | |
KeySize | int | Key size in bits. |
CipherMode | CipherMode | Cipher mode to use |
return | System |
public Decrypt ( |
||
Input | ||
Data | byte | |
return |
public Encrypt ( |
||
Input | ||
return |
public Process ( byte InputBuffer, int InputOffset, int Count ) : |
||
InputBuffer | byte | The input to process |
InputOffset | int | The offset into the byte array from which to begin using data. |
Count | int | The number of bytes in the array to use as data. |
return |
public StartDecrypt ( byte Key, byte IV ) : void | ||
Key | byte | |
IV | byte | |
return | void |
public StartEncrypt ( byte Key, byte IV ) : void | ||
Key | byte | |
IV | byte | |
return | void |