1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* (C) 2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#if defined(BOTAN_HAS_FPE_FE1)
#include <botan/fpe_fe1.h>
#endif
namespace Botan_Tests {
#if defined(BOTAN_HAS_FPE_FE1)
class FPE_FE1_Tests : public Text_Based_Test
{
public:
FPE_FE1_Tests() : Text_Based_Test("fpe_fe1.vec", "Mod,In,Out,Key,Tweak") {}
Test::Result run_one_test(const std::string&, const VarMap& vars) override
{
const Botan::BigInt modulus = get_req_bn(vars, "Mod");
const Botan::BigInt input = get_req_bn(vars, "In");
const Botan::BigInt expected = get_req_bn(vars, "Out");
const std::vector<uint8_t> key = get_req_bin(vars, "Key");
const std::vector<uint8_t> tweak = get_req_bin(vars, "Tweak");
Test::Result result("FPE_FE1");
const Botan::BigInt got = Botan::FPE::fe1_encrypt(modulus, input, key, tweak);
result.test_eq("ciphertext", got, expected);
const Botan::BigInt decry = Botan::FPE::fe1_decrypt(modulus, got, key, tweak);
result.test_eq("decrypted", decry, input);
return result;
}
};
BOTAN_REGISTER_TEST("fpe_fe1", FPE_FE1_Tests);
#endif
}
|