Quantum Algorithms
The library supports various quantum algorithms designed to protect data against quantum computing threats. These algorithms adhere to post-quantum cryptographic standards. Below is a list of the supported algorithms, along with brief descriptions of each:
public enum QuantumAlgorithmType
{
Kyber512,
Kyber768,
Kyber1024,
Sntrup761,
FrodoKem1344Shake,
MlKem512,
MlKem768,
MlKem1024
}
To set a quantum algorithm, use the following code:
var storage = new StorageManager(QuantumAlgorithmType.Kyber1024);
Note: The default quantum algorithm is Kyber1024