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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*************************************************
* Base Classes Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/base.h>
#include <botan/version.h>
#include <botan/parsing.h>
namespace Botan {
/*************************************************
* SymmetricAlgorithm Constructor *
*************************************************/
SymmetricAlgorithm::SymmetricAlgorithm(u32bit key_min, u32bit key_max,
u32bit key_mod) :
MAXIMUM_KEYLENGTH(key_max ? key_max : key_min),
MINIMUM_KEYLENGTH(key_min),
KEYLENGTH_MULTIPLE(key_mod)
{
}
/*************************************************
* Query if the keylength is valid *
*************************************************/
bool SymmetricAlgorithm::valid_keylength(u32bit length) const
{
return ((length >= MINIMUM_KEYLENGTH) &&
(length <= MAXIMUM_KEYLENGTH) &&
(length % KEYLENGTH_MULTIPLE == 0));
}
/*************************************************
* Set the key *
*************************************************/
void SymmetricAlgorithm::set_key(const SymmetricKey& algo_key)
throw(Invalid_Key_Length)
{
set_key(algo_key.begin(), algo_key.length());
}
/*************************************************
* Set the key *
*************************************************/
void SymmetricAlgorithm::set_key(const byte algo_key[], u32bit length)
throw(Invalid_Key_Length)
{
if(!valid_keylength(length))
throw Invalid_Key_Length(name(), length);
key(algo_key, length);
}
/*************************************************
* BlockCipher Constructor *
*************************************************/
BlockCipher::BlockCipher(u32bit block, u32bit key_min, u32bit key_max,
u32bit key_mod) :
SymmetricAlgorithm(key_min, key_max, key_mod),
BLOCK_SIZE(block)
{
}
/*************************************************
* StreamCipher Constructor *
*************************************************/
StreamCipher::StreamCipher(u32bit key_min, u32bit key_max, u32bit key_mod,
u32bit iv_len) :
SymmetricAlgorithm(key_min, key_max, key_mod), IV_LENGTH(iv_len)
{
}
/*************************************************
* BufferedComputation Constructor *
*************************************************/
BufferedComputation::BufferedComputation(u32bit olen) : OUTPUT_LENGTH(olen)
{
}
/*************************************************
* HashFunction Constructor *
*************************************************/
HashFunction::HashFunction(u32bit hlen, u32bit blen) :
BufferedComputation(hlen), HASH_BLOCK_SIZE(blen)
{
}
/*************************************************
* MessageAuthenticationCode Constructor *
*************************************************/
MessageAuthenticationCode::MessageAuthenticationCode(u32bit mlen,
u32bit key_min,
u32bit key_max,
u32bit key_mod) :
BufferedComputation(mlen),
SymmetricAlgorithm(key_min, key_max, key_mod)
{
}
/*************************************************
* Default MAC verification operation *
*************************************************/
bool MessageAuthenticationCode::verify_mac(const byte mac[], u32bit length)
{
SecureVector<byte> our_mac = final();
if(our_mac.size() != length)
return false;
for(u32bit j = 0; j != length; j++)
if(mac[j] != our_mac[j])
return false;
return true;
}
/*************************************************
* Default StreamCipher Resync Operation *
*************************************************/
void StreamCipher::resync(const byte[], u32bit length)
{
if(length)
throw Exception("The stream cipher " + name() +
" does not support resyncronization");
}
/*************************************************
* Default StreamCipher Seek Operation *
*************************************************/
void StreamCipher::seek(u32bit)
{
throw Exception("The stream cipher " + name() + " does not support seek()");
}
/*************************************************
* Hashing/MACing *
*************************************************/
void BufferedComputation::update(const byte in[], u32bit n)
{
add_data(in, n);
}
/*************************************************
* Hashing/MACing *
*************************************************/
void BufferedComputation::update(const MemoryRegion<byte>& in)
{
add_data(in, in.size());
}
/*************************************************
* Hashing/MACing *
*************************************************/
void BufferedComputation::update(const std::string& str)
{
update((const byte*)str.c_str(), str.size());
}
/*************************************************
* Hashing/MACing *
*************************************************/
void BufferedComputation::update(byte in)
{
update(&in, 1);
}
/*************************************************
* Hashing/MACing *
*************************************************/
SecureVector<byte> BufferedComputation::final()
{
SecureVector<byte> output(OUTPUT_LENGTH);
final_result(output);
return output;
}
/*************************************************
* Hashing/MACing *
*************************************************/
SecureVector<byte> BufferedComputation::process(const byte in[], u32bit len)
{
update(in, len);
return final();
}
/*************************************************
* Hashing/MACing *
*************************************************/
SecureVector<byte> BufferedComputation::process(const MemoryRegion<byte>& in)
{
update(in, in.size());
return final();
}
/*************************************************
* Hashing/MACing *
*************************************************/
SecureVector<byte> BufferedComputation::process(const std::string& in)
{
update(in);
return final();
}
/*************************************************
* Default fast poll for EntropySources *
*************************************************/
u32bit EntropySource::fast_poll(byte buf[], u32bit len)
{
return slow_poll(buf, len);
}
/*************************************************
* Add entropy to internal state *
*************************************************/
void RandomNumberGenerator::add_entropy(const byte random[], u32bit length)
{
add_randomness(random, length);
}
/*************************************************
* Add entropy to internal state *
*************************************************/
void RandomNumberGenerator::add_entropy(EntropySource& source, bool slowpoll)
{
SecureVector<byte> buffer(slowpoll ? 192 : 64);
u32bit returned;
if(slowpoll) returned = source.slow_poll(buffer, buffer.size());
else returned = source.fast_poll(buffer, buffer.size());
add_entropy(buffer, returned);
}
/*************************************************
* Return the version as a string *
*************************************************/
std::string version_string()
{
return "Botan " + to_string(version_major()) + "." +
to_string(version_minor()) + "." +
to_string(version_patch());
}
/*************************************************
* Return parts of the version as integers *
*************************************************/
u32bit version_major() { return BOTAN_VERSION_MAJOR; }
u32bit version_minor() { return BOTAN_VERSION_MINOR; }
u32bit version_patch() { return BOTAN_VERSION_PATCH; }
}
|