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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#include <openssl/des.h>
#include <openssl/evp.h>
#include <cstdlib>
#include <iomanip>
#include <iostream>
void PrintCblock(const DES_cblock &b, bool end_line = true) {
std::cout << std::hex << std::right << std::setfill('0');
for (auto c : b) {
std::cout << std::setw(2) << static_cast<int>(c);
}
if (end_line) {
std::cout << std::endl;
}
}
int main() {
auto cipher = EVP_des_cfb();
std::cout << "Selected cipher: des_cfb" << std::endl;
auto key_length = EVP_CIPHER_key_length(cipher);
std::cout << "Key length: " << key_length << std::endl;
auto iv_length = EVP_CIPHER_iv_length(cipher);
std::cout << "IV length: " << iv_length << std::endl;
auto block_length = EVP_CIPHER_block_size(cipher);
std::cout << "Block length: " << block_length << std::endl;
DES_cblock key;
std::srand(std::time(nullptr));
std::cout << std::hex << std::setfill('0');
if (DES_random_key(&key) == 0) {
std::cerr << "Failed to generate key." << std::endl;
return 1;
} else {
std::cout << "Succeeded to generate key." << std::endl;
std::cout << "Key: ";
PrintCblock(key);
}
DES_key_schedule key_schedule;
{
auto result = DES_set_key_checked(&key, &key_schedule);
if (result == -1) {
std::cerr << "Parity is wrong." << std::endl;
return 1;
} else if (result == -2) {
std::cerr << "Key is too weak." << std::endl;
}
}
DES_cblock clear_text = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08};
std::cout << "Clear text: " << std::hex;
PrintCblock(clear_text);
DES_cblock cipher_text;
DES_ecb_encrypt(&clear_text, &cipher_text, &key_schedule, 1);
std::cout << "Cipher text after encrypted: " << std::hex;
PrintCblock(cipher_text);
DES_ecb_encrypt(&cipher_text, &clear_text, &key_schedule, 0);
std::cout << "Clear text after decrypted: " << std::hex;
PrintCblock(clear_text);
return 0;
}
|