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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*************************************************
* Lion Source File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#include <botan/lion.h>
#include <botan/lookup.h>
#include <botan/bit_ops.h>
#include <botan/parsing.h>
namespace Botan {
/*************************************************
* Lion Encryption *
*************************************************/
void Lion::enc(const byte in[], byte out[]) const
{
SecureVector<byte> buffer(LEFT_SIZE);
xor_buf(buffer, in, key1, LEFT_SIZE);
cipher->set_key(buffer, LEFT_SIZE);
cipher->encrypt(in + LEFT_SIZE, out + LEFT_SIZE, RIGHT_SIZE);
hash->update(out + LEFT_SIZE, RIGHT_SIZE);
hash->final(buffer);
xor_buf(out, in, buffer, LEFT_SIZE);
xor_buf(buffer, out, key2, LEFT_SIZE);
cipher->set_key(buffer, LEFT_SIZE);
cipher->encrypt(out + LEFT_SIZE, RIGHT_SIZE);
}
/*************************************************
* Lion Decryption *
*************************************************/
void Lion::dec(const byte in[], byte out[]) const
{
SecureVector<byte> buffer(LEFT_SIZE);
xor_buf(buffer, in, key2, LEFT_SIZE);
cipher->set_key(buffer, LEFT_SIZE);
cipher->encrypt(in + LEFT_SIZE, out + LEFT_SIZE, RIGHT_SIZE);
hash->update(out + LEFT_SIZE, RIGHT_SIZE);
hash->final(buffer);
xor_buf(out, in, buffer, LEFT_SIZE);
xor_buf(buffer, out, key1, LEFT_SIZE);
cipher->set_key(buffer, LEFT_SIZE);
cipher->encrypt(out + LEFT_SIZE, RIGHT_SIZE);
}
/*************************************************
* Lion Key Schedule *
*************************************************/
void Lion::key(const byte key[], u32bit length)
{
clear();
key1.copy(key, length / 2);
key2.copy(key + length / 2, length / 2);
}
/*************************************************
* Return the name of this type *
*************************************************/
std::string Lion::name() const
{
return "Lion(" + hash->name() + "," +
cipher->name() + "," +
to_string(BLOCK_SIZE) + ")";
}
/*************************************************
* Return a clone of this object *
*************************************************/
BlockCipher* Lion::clone() const
{
return new Lion(hash->name(), cipher->name(), BLOCK_SIZE);
}
/*************************************************
* Clear memory of sensitive data *
*************************************************/
void Lion::clear() throw()
{
hash->clear();
cipher->clear();
key1.clear();
key2.clear();
}
/*************************************************
* Lion Constructor *
*************************************************/
Lion::Lion(const std::string& hash_name, const std::string& sc_name,
u32bit block_len) :
BlockCipher(block_len, 2, 2*output_length_of(hash_name), 2),
LEFT_SIZE(output_length_of(hash_name)), RIGHT_SIZE(BLOCK_SIZE - LEFT_SIZE)
{
hash = get_hash(hash_name);
cipher = get_stream_cipher(sc_name);
if(2*LEFT_SIZE + 1 > BLOCK_SIZE)
throw Invalid_Argument(name() + ": Chosen block size is too small");
if(!cipher->valid_keylength(LEFT_SIZE))
throw Exception(name() + ": This stream/hash combination is invalid");
key1.create(LEFT_SIZE);
key2.create(LEFT_SIZE);
}
}
|