blob: 0532a6269e69f9c676d42b7ce23427e4f4b6fdaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <string>
namespace AES{
enum Algorithm{
AES_128_CBC,
AES_192_CBC,
AES_256_CBC,
};
std::string encrypt(const std::string &data,const std::string &key,Algorithm algo);
//throws invalid_argument for an invalid ciphertext (length not a multiple of block size, or padding malformed)
std::string decrypt(const std::string &data,const std::string &key,Algorithm algo);
void test();
}
|