Class AesCtrCipherParameters
Definition
- Namespace:
- Tizen.Security.SecureRepository.Crypto
- Assembly:
- Tizen.Security.SecureRepository.dll
A class for holding parameters for the AES algorithm with the counter mode.
public class AesCtrCipherParameters : AesCipherParameters
- Inheritance
Constructors
View SourceAesCtrCipherParameters()
A default constructor.
Declaration
public AesCtrCipherParameters()
Remarks
The CipherAlgorithmType in CipherParameters is set to CipherAlgorithmType.AesCtr.
Properties
View SourceCounterLength
Length of the counter block in bits.
Declaration
public long CounterLength { get; set; }
Property Value
Type | Description |
---|---|
long |
Remarks
Optional, only 128b is supported at the moment.
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | The value should be positive. |