4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-10 17:59:33 +00:00

added no padding encryption algorithm to qca core

This commit is contained in:
Ivan Romanov 2013-08-25 16:50:51 +06:00
parent 0a8b9db661
commit fc315c5bba

@ -53,8 +53,9 @@ class DHPrivateKey;
*/
enum EncryptionAlgorithm
{
EME_PKCS1v15, ///< Block type 2 (PKCS#1, Version 1.5)
EME_PKCS1_OAEP ///< Optimal asymmetric encryption padding (PKCS#1, Version 2.0)
EME_PKCS1v15, ///< Block type 2 (PKCS#1, Version 1.5)
EME_PKCS1_OAEP, ///< Optimal asymmetric encryption padding (PKCS#1, Version 2.0)
EME_NO_PADDING ///< No padding
};
/**