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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/*************************************************
* Default Engine PK Operations Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/def_eng.h>
#include <botan/mod_exp.h>
#include <botan/numthry.h>
#include <botan/barrett.h>
namespace Botan {
namespace {
/*************************************************
* Default IF Operation *
*************************************************/
class Default_IF_Op : public IF_Operation
{
public:
BigInt public_op(const BigInt& i) const { return powermod_e_n(i); }
BigInt private_op(const BigInt&) const;
IF_Operation* clone() const { return new Default_IF_Op(*this); }
Default_IF_Op(const BigInt&, const BigInt&, const BigInt&,
const BigInt&, const BigInt&, const BigInt&,
const BigInt&, const BigInt&);
private:
const BigInt q, c;
FixedExponent_Exp powermod_e_n, powermod_d1_p, powermod_d2_q;
};
/*************************************************
* Default_IF_Op Constructor *
*************************************************/
Default_IF_Op::Default_IF_Op(const BigInt& e, const BigInt& n, const BigInt&,
const BigInt& p, const BigInt& qx,
const BigInt& d1, const BigInt& d2,
const BigInt& cx) : q(qx), c(cx)
{
powermod_e_n = FixedExponent_Exp(e, n);
if(d1 != 0 && d2 != 0 && p != 0 && q != 0)
{
powermod_d1_p = FixedExponent_Exp(d1, p);
powermod_d2_q = FixedExponent_Exp(d2, q);
}
}
/*************************************************
* Default IF Private Operation *
*************************************************/
BigInt Default_IF_Op::private_op(const BigInt& i) const
{
if(q == 0)
throw Internal_Error("Default_IF_Op::private_op: No private key");
BigInt j1 = powermod_d1_p(i);
BigInt j2 = powermod_d2_q(i);
return mul_add(powermod_d1_p.reduce(sub_mul(j1, j2, c)), q, j2);
}
/*************************************************
* Default DSA Operation *
*************************************************/
class Default_DSA_Op : public DSA_Operation
{
public:
bool verify(const byte[], u32bit, const byte[], u32bit) const;
SecureVector<byte> sign(const byte[], u32bit, const BigInt&) const;
DSA_Operation* clone() const { return new Default_DSA_Op(*this); }
Default_DSA_Op(const DL_Group&, const BigInt&, const BigInt&);
private:
const BigInt x, y;
const DL_Group group;
FixedBase_Exp powermod_g_p, powermod_y_p;
};
/*************************************************
* Default_DSA_Op Constructor *
*************************************************/
Default_DSA_Op::Default_DSA_Op(const DL_Group& grp, const BigInt& y1,
const BigInt& x1) : x(x1), y(y1), group(grp)
{
powermod_g_p = FixedBase_Exp(group.get_g(), group.get_p());
powermod_y_p = FixedBase_Exp(y, group.get_p());
}
/*************************************************
* Default DSA Verify Operation *
*************************************************/
bool Default_DSA_Op::verify(const byte msg[], u32bit msg_len,
const byte sig[], u32bit sig_len) const
{
const BigInt& q = group.get_q();
const BigInt& p = group.get_p();
if(sig_len != 2*q.bytes() || msg_len > q.bytes())
return false;
BigInt r(sig, q.bytes());
BigInt s(sig + q.bytes(), q.bytes());
BigInt i(msg, msg_len);
if(r <= 0 || r >= q || s <= 0 || s >= q)
return false;
s = inverse_mod(s, q);
s = mul_mod(powermod_g_p(mul_mod(s, i, q)),
powermod_y_p(mul_mod(s, r, q)), p);
return (s % q == r);
}
/*************************************************
* Default DSA Sign Operation *
*************************************************/
SecureVector<byte> Default_DSA_Op::sign(const byte in[], u32bit length,
const BigInt& k) const
{
if(x == 0)
throw Internal_Error("Default_DSA_Op::sign: No private key");
const BigInt& q = group.get_q();
BigInt i(in, length);
BigInt r = powermod_g_p(k) % q;
BigInt s = mul_mod(inverse_mod(k, q), mul_add(x, r, i), q);
if(r.is_zero() || s.is_zero())
throw Internal_Error("Default_DSA_Op::sign: r or s was zero");
SecureVector<byte> output(2*q.bytes());
r.binary_encode(output + (output.size() / 2 - r.bytes()));
s.binary_encode(output + (output.size() - s.bytes()));
return output;
}
/*************************************************
* Default NR Operation *
*************************************************/
class Default_NR_Op : public NR_Operation
{
public:
SecureVector<byte> verify(const byte[], u32bit) const;
SecureVector<byte> sign(const byte[], u32bit, const BigInt&) const;
NR_Operation* clone() const { return new Default_NR_Op(*this); }
Default_NR_Op(const DL_Group&, const BigInt&, const BigInt&);
private:
const BigInt x, y;
const DL_Group group;
FixedBase_Exp powermod_g_p, powermod_y_p;
};
/*************************************************
* Default_NR_Op Constructor *
*************************************************/
Default_NR_Op::Default_NR_Op(const DL_Group& grp, const BigInt& y1,
const BigInt& x1) : x(x1), y(y1), group(grp)
{
powermod_g_p = FixedBase_Exp(group.get_g(), group.get_p());
powermod_y_p = FixedBase_Exp(y, group.get_p());
}
/*************************************************
* Default NR Verify Operation *
*************************************************/
SecureVector<byte> Default_NR_Op::verify(const byte in[], u32bit length) const
{
const BigInt& p = group.get_p();
const BigInt& q = group.get_q();
if(length != 2*q.bytes())
return false;
BigInt c(in, q.bytes());
BigInt d(in + q.bytes(), q.bytes());
if(c.is_zero() || c >= q || d >= q)
throw Invalid_Argument("Default_NR_Op::verify: Invalid signature");
BigInt i = mul_mod(powermod_g_p(d), powermod_y_p(c), p);
return BigInt::encode((c - i) % q);
}
/*************************************************
* Default NR Sign Operation *
*************************************************/
SecureVector<byte> Default_NR_Op::sign(const byte in[], u32bit length,
const BigInt& k) const
{
if(x == 0)
throw Internal_Error("Default_NR_Op::sign: No private key");
const BigInt& q = group.get_q();
BigInt f(in, length);
if(f >= q)
throw Invalid_Argument("Default_NR_Op::sign: Input is out of range");
BigInt c = (powermod_g_p(k) + f) % q;
if(c.is_zero())
throw Internal_Error("Default_NR_Op::sign: c was zero");
BigInt d = (k - x * c) % q;
SecureVector<byte> output(2*q.bytes());
c.binary_encode(output + (output.size() / 2 - c.bytes()));
d.binary_encode(output + (output.size() - d.bytes()));
return output;
}
/*************************************************
* Default ElGamal Operation *
*************************************************/
class Default_ELG_Op : public ELG_Operation
{
public:
SecureVector<byte> encrypt(const byte[], u32bit, const BigInt&) const;
BigInt decrypt(const BigInt&, const BigInt&) const;
ELG_Operation* clone() const { return new Default_ELG_Op(*this); }
Default_ELG_Op(const DL_Group&, const BigInt&, const BigInt&);
private:
const BigInt p;
FixedBase_Exp powermod_g_p, powermod_y_p;
FixedExponent_Exp powermod_x_p;
};
/*************************************************
* Default_ELG_Op Constructor *
*************************************************/
Default_ELG_Op::Default_ELG_Op(const DL_Group& group, const BigInt& y,
const BigInt& x) : p(group.get_p())
{
powermod_g_p = FixedBase_Exp(group.get_g(), p);
powermod_y_p = FixedBase_Exp(y, p);
if(x != 0)
powermod_x_p = FixedExponent_Exp(x, p);
}
/*************************************************
* Default ElGamal Encrypt Operation *
*************************************************/
SecureVector<byte> Default_ELG_Op::encrypt(const byte in[], u32bit length,
const BigInt& k) const
{
BigInt m(in, length);
if(m >= p)
throw Invalid_Argument("Default_ELG_Op::encrypt: Input is too large");
BigInt a = powermod_g_p(k);
BigInt b = mul_mod(m, powermod_y_p(k), p);
SecureVector<byte> output(2*p.bytes());
a.binary_encode(output + (p.bytes() - a.bytes()));
b.binary_encode(output + output.size() / 2 + (p.bytes() - b.bytes()));
return output;
}
/*************************************************
* Default ElGamal Decrypt Operation *
*************************************************/
BigInt Default_ELG_Op::decrypt(const BigInt& a, const BigInt& b) const
{
if(!powermod_x_p.initialized())
throw Internal_Error("Default_ELG_Op::decrypt: No private key");
if(a >= p || b >= p)
throw Invalid_Argument("Default_ELG_Op: Invalid message");
return mul_mod(b, inverse_mod(powermod_x_p(a), p), p);
}
/*************************************************
* Default DH Operation *
*************************************************/
class Default_DH_Op : public DH_Operation
{
public:
BigInt agree(const BigInt& i) const { return powermod_x_p(i); }
DH_Operation* clone() const { return new Default_DH_Op(*this); }
Default_DH_Op(const DL_Group& group, const BigInt& x) :
powermod_x_p(x, group.get_p()) {}
private:
const FixedExponent_Exp powermod_x_p;
};
}
/*************************************************
* Acquire an IF op *
*************************************************/
IF_Operation* Default_Engine::if_op(const BigInt& e, const BigInt& n,
const BigInt& d, const BigInt& p,
const BigInt& q, const BigInt& d1,
const BigInt& d2, const BigInt& c) const
{
return new Default_IF_Op(e, n, d, p, q, d1, d2, c);
}
/*************************************************
* Acquire a DSA op *
*************************************************/
DSA_Operation* Default_Engine::dsa_op(const DL_Group& group, const BigInt& y,
const BigInt& x) const
{
return new Default_DSA_Op(group, y, x);
}
/*************************************************
* Acquire a NR op *
*************************************************/
NR_Operation* Default_Engine::nr_op(const DL_Group& group, const BigInt& y,
const BigInt& x) const
{
return new Default_NR_Op(group, y, x);
}
/*************************************************
* Acquire an ElGamal op *
*************************************************/
ELG_Operation* Default_Engine::elg_op(const DL_Group& group, const BigInt& y,
const BigInt& x) const
{
return new Default_ELG_Op(group, y, x);
}
/*************************************************
* Acquire a DH op *
*************************************************/
DH_Operation* Default_Engine::dh_op(const DL_Group& group,
const BigInt& x) const
{
return new Default_DH_Op(group, x);
}
/*************************************************
* Acquire a ModularReducer *
*************************************************/
ModularReducer* Default_Engine::reducer(const BigInt& n, bool) const
{
return new BarrettReducer(n);
}
}
|