key.c: Add hashing and comparison for `Key' objects.
[catacomb-python] / catacomb / __init__.py
CommitLineData
00401529
MW
1### -*-python-*-
2###
3### Setup for Catacomb/Python bindings
4###
5### (c) 2004 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the Python interface to Catacomb.
11###
12### Catacomb/Python is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### Catacomb/Python is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with Catacomb/Python; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
ed8cc62d 25
6bd22b53
MW
26from __future__ import with_statement
27
d7ab1bab 28from binascii import hexlify as _hexify, unhexlify as _unhexify
6bd22b53 29from contextlib import contextmanager as _ctxmgr
8854bd74
MW
30try: import DLFCN as _dlfcn
31except ImportError: _dlfcn = None
a3ae4a9f 32import os as _os
6bd22b53 33from struct import pack as _pack
378ceeef
MW
34import sys as _sys
35import types as _types
36
37###--------------------------------------------------------------------------
38### Import the main C extension module.
39
a3ae4a9f
MW
40try:
41 _dlflags = _odlflags = _sys.getdlopenflags()
42except AttributeError:
43 _dlflags = _odlflags = -1
44
45## Set the `deep binding' flag. Python has its own different MD5
46## implementation, and some distributions export `md5_init' and friends so
47## they override our versions, which doesn't end well. Figure out how to
48## turn this flag on so we don't have the problem.
49if _dlflags >= 0:
50 try: _dlflags |= _dlfcn.RTLD_DEEPBIND
51 except AttributeError:
52 try: _dlflags |= _os.RTLD_DEEPBIND
53 except AttributeError:
54 if _os.uname()[0] == 'Linux': _dlflags |= 8 # magic knowledge
55 else: pass # can't do this.
56 _sys.setdlopenflags(_dlflags)
57
378ceeef 58import _base
46e6ad89 59
a3ae4a9f
MW
60if _odlflags >= 0:
61 _sys.setdlopenflags(_odlflags)
62
63del _dlflags, _odlflags
64
00401529
MW
65###--------------------------------------------------------------------------
66### Basic stuff.
ed8cc62d 67
c04b289c
MW
68## For the benefit of the default keyreporter, we need the program name.
69_base._ego(_sys.argv[0])
d7ab1bab 70
930d78e3
MW
71## Register our module.
72_base._set_home_module(_sys.modules[__name__])
73def default_lostexchook(why, ty, val, tb):
74 """`catacomb.lostexchook(WHY, TY, VAL, TB)' reports lost exceptions."""
75 _sys.stderr.write("\n\n!!! LOST EXCEPTION: %s\n" % why)
76 _sys.excepthook(ty, val, tb)
77 _sys.stderr.write("\n")
78lostexchook = default_lostexchook
79
467c2619
MW
80## Text/binary conversions.
81def _bin(s): return s
82
d6542364
MW
83## Iterating over dictionaries.
84def _iteritems(dict): return dict.iteritems()
85def _itervalues(dict): return dict.itervalues()
86
837fa485
MW
87## How to fix a name back into the right identifier. Alas, the rules are not
88## consistent.
89def _fixname(name):
90
91 ## Hyphens consistently become underscores.
92 name = name.replace('-', '_')
93
94 ## But slashes might become underscores or just vanish.
3e80d327 95 if name.startswith('salsa20'): name = name.replace('/', '')
837fa485
MW
96 else: name = name.replace('/', '_')
97
98 ## Done.
99 return name
100
ed8cc62d
MW
101## Initialize the module. Drag in the static methods of the various
102## classes; create names for the various known crypto algorithms.
d7ab1bab 103def _init():
104 d = globals()
105 b = _base.__dict__;
106 for i in b:
107 if i[0] != '_':
108 d[i] = b[i];
bebf03ab 109 for i in [gcciphers, gcaeads, gchashes, gcmacs, gcprps]:
d6542364 110 for c in _itervalues(i):
837fa485 111 d[_fixname(c.name)] = c
d6542364 112 for c in _itervalues(gccrands):
837fa485 113 d[_fixname(c.name + 'rand')] = c
d7ab1bab 114_init()
115
ed8cc62d
MW
116## A handy function for our work: add the methods of a named class to an
117## existing class. This is how we write the Python-implemented parts of our
118## mostly-C types.
d7ab1bab 119def _augment(c, cc):
120 for i in cc.__dict__:
121 a = cc.__dict__[i]
122 if type(a) is _types.MethodType:
123 a = a.im_func
124 elif type(a) not in (_types.FunctionType, staticmethod, classmethod):
125 continue
126 setattr(c, i, a)
127
ed8cc62d
MW
128## Parsing functions tend to return the object parsed and the remainder of
129## the input. This checks that the remainder is input and, if so, returns
130## just the object.
131def _checkend(r):
132 x, rest = r
133 if rest != '':
1c7419c9 134 raise SyntaxError('junk at end of string')
ed8cc62d
MW
135 return x
136
96d7ed6c 137## Some pretty-printing utilities.
652e16ea 138PRINT_SECRETS = False
330e6a74 139def _clsname(me): return type(me).__name__
652e16ea
MW
140def _repr_secret(thing, secretp = True):
141 if not secretp or PRINT_SECRETS: return repr(thing)
142 else: return '#<SECRET>'
96d7ed6c 143def _pp_str(me, pp, cyclep): pp.text(cyclep and '...' or str(me))
652e16ea
MW
144def _pp_secret(pp, thing, secretp = True):
145 if not secretp or PRINT_SECRETS: pp.pretty(thing)
146 else: pp.text('#<SECRET>')
582568f1
MW
147def _pp_bgroup(pp, text):
148 ind = len(text)
149 pp.begin_group(ind, text)
150 return ind
151def _pp_bgroup_tyname(pp, obj, open = '('):
330e6a74 152 return _pp_bgroup(pp, _clsname(obj) + open)
652e16ea 153def _pp_kv(pp, k, v, secretp = False):
582568f1 154 ind = _pp_bgroup(pp, k + ' = ')
652e16ea 155 _pp_secret(pp, v, secretp)
96d7ed6c
MW
156 pp.end_group(ind, '')
157def _pp_commas(pp, printfn, items):
158 firstp = True
159 for i in items:
160 if firstp: firstp = False
161 else: pp.text(','); pp.breakable()
162 printfn(i)
163def _pp_dict(pp, items):
85866c8a
MW
164 def p(kv):
165 k, v = kv
582568f1 166 pp.begin_group(0)
96d7ed6c
MW
167 pp.pretty(k)
168 pp.text(':')
582568f1 169 pp.begin_group(2)
96d7ed6c
MW
170 pp.breakable()
171 pp.pretty(v)
582568f1
MW
172 pp.end_group(2)
173 pp.end_group(0)
96d7ed6c
MW
174 _pp_commas(pp, p, items)
175
00401529
MW
176###--------------------------------------------------------------------------
177### Bytestrings.
ed8cc62d 178
d7ab1bab 179class _tmp:
180 def fromhex(x):
181 return ByteString(_unhexify(x))
182 fromhex = staticmethod(fromhex)
ab093124
MW
183 def hex(me): return _hexify(me)
184 __hex__ = hex
d7ab1bab 185 def __repr__(me):
ab093124 186 return 'bytes(%r)' % me.hex()
d7ab1bab 187_augment(ByteString, _tmp)
bfb450cc 188ByteString.__hash__ = str.__hash__
d7ab1bab 189bytes = ByteString.fromhex
190
00401529 191###--------------------------------------------------------------------------
bebf03ab
MW
192### Symmetric encryption.
193
194class _tmp:
3e611d87 195 def encrypt(me, n, m, tsz = None, h = ByteString.zero(0)):
bebf03ab
MW
196 if tsz is None: tsz = me.__class__.tagsz.default
197 e = me.enc(n, len(h), len(m), tsz)
198 if not len(h): a = None
199 else: a = e.aad().hash(h)
200 c0 = e.encrypt(m)
201 c1, t = e.done(aad = a)
202 return c0 + c1, t
3e611d87 203 def decrypt(me, n, c, t, h = ByteString.zero(0)):
bebf03ab
MW
204 d = me.dec(n, len(h), len(c), len(t))
205 if not len(h): a = None
206 else: a = d.aad().hash(h)
207 m = d.decrypt(c)
208 m += d.done(t, aad = a)
209 return m
210_augment(GAEKey, _tmp)
211
212###--------------------------------------------------------------------------
bfb450cc
MW
213### Hashing.
214
215class _tmp:
216 def check(me, h):
217 hh = me.done()
218 return ctstreq(h, hh)
219_augment(GHash, _tmp)
220_augment(Poly1305Hash, _tmp)
221
6bd22b53
MW
222class _HashBase (object):
223 ## The standard hash methods. Assume that `hash' is defined and returns
224 ## the receiver.
05868a05
MW
225 def _check_range(me, n, max):
226 if not (0 <= n <= max): raise OverflowError("out of range")
227 def hashu8(me, n):
228 me._check_range(n, 0xff)
229 return me.hash(_pack('B', n))
230 def hashu16l(me, n):
231 me._check_range(n, 0xffff)
232 return me.hash(_pack('<H', n))
233 def hashu16b(me, n):
234 me._check_range(n, 0xffff)
235 return me.hash(_pack('>H', n))
6bd22b53 236 hashu16 = hashu16b
05868a05
MW
237 def hashu32l(me, n):
238 me._check_range(n, 0xffffffff)
239 return me.hash(_pack('<L', n))
240 def hashu32b(me, n):
241 me._check_range(n, 0xffffffff)
242 return me.hash(_pack('>L', n))
6bd22b53 243 hashu32 = hashu32b
05868a05
MW
244 def hashu64l(me, n):
245 me._check_range(n, 0xffffffffffffffff)
246 return me.hash(_pack('<Q', n))
247 def hashu64b(me, n):
248 me._check_range(n, 0xffffffffffffffff)
249 return me.hash(_pack('>Q', n))
6bd22b53
MW
250 hashu64 = hashu64b
251 def hashbuf8(me, s): return me.hashu8(len(s)).hash(s)
252 def hashbuf16l(me, s): return me.hashu16l(len(s)).hash(s)
253 def hashbuf16b(me, s): return me.hashu16b(len(s)).hash(s)
254 hashbuf16 = hashbuf16b
255 def hashbuf32l(me, s): return me.hashu32l(len(s)).hash(s)
256 def hashbuf32b(me, s): return me.hashu32b(len(s)).hash(s)
257 hashbuf32 = hashbuf32b
258 def hashbuf64l(me, s): return me.hashu64l(len(s)).hash(s)
259 def hashbuf64b(me, s): return me.hashu64b(len(s)).hash(s)
260 hashbuf64 = hashbuf64b
261 def hashstrz(me, s): return me.hash(s).hashu8(0)
262
263class _ShakeBase (_HashBase):
264
265 ## Python gets really confused if I try to augment `__new__' on native
266 ## classes, so wrap and delegate. Sorry.
467c2619 267 def __init__(me, perso = _bin(''), *args, **kw):
6bd22b53
MW
268 super(_ShakeBase, me).__init__(*args, **kw)
269 me._h = me._SHAKE(perso = perso, func = me._FUNC)
270
271 ## Delegate methods...
688625b6 272 def copy(me): new = me.__class__._bare_new(); new._copy(me); return new
614c3bbf 273 def _copy(me, other): me._h = other._h.copy()
6bd22b53
MW
274 def hash(me, m): me._h.hash(m); return me
275 def xof(me): me._h.xof(); return me
276 def get(me, n): return me._h.get(n)
277 def mask(me, m): return me._h.mask(m)
278 def done(me, n): return me._h.done(n)
279 def check(me, h): return ctstreq(h, me.done(len(h)))
280 @property
281 def state(me): return me._h.state
282 @property
283 def buffered(me): return me._h.buffered
284 @property
285 def rate(me): return me._h.rate
688625b6
MW
286 @classmethod
287 def _bare_new(cls): return cls()
6bd22b53
MW
288
289class _tmp:
290 def check(me, h):
291 return ctstreq(h, me.done(len(h)))
292 def leftenc(me, n):
293 nn = MP(n).storeb()
294 return me.hashu8(len(nn)).hash(nn)
295 def rightenc(me, n):
296 nn = MP(n).storeb()
297 return me.hash(nn).hashu8(len(nn))
298 def stringenc(me, str):
299 return me.leftenc(8*len(str)).hash(str)
300 def bytepad_before(me):
301 return me.leftenc(me.rate)
302 def bytepad_after(me):
303 if me.buffered: me.hash(me._Z[:me.rate - me.buffered])
304 return me
305 @_ctxmgr
306 def bytepad(me):
307 me.bytepad_before()
308 yield me
309 me.bytepad_after()
310_augment(Shake, _tmp)
311_augment(_ShakeBase, _tmp)
f22cdfa9 312Shake._Z = _ShakeBase._Z = ByteString.zero(200)
6bd22b53
MW
313
314class KMAC (_ShakeBase):
467c2619 315 _FUNC = _bin('KMAC')
6bd22b53
MW
316 def __init__(me, k, *arg, **kw):
317 super(KMAC, me).__init__(*arg, **kw)
318 with me.bytepad(): me.stringenc(k)
319 def done(me, n = -1):
320 if n < 0: n = me._TAGSZ
321 me.rightenc(8*n)
322 return super(KMAC, me).done(n)
323 def xof(me):
324 me.rightenc(0)
325 return super(KMAC, me).xof()
688625b6 326 @classmethod
467c2619 327 def _bare_new(cls): return cls(_bin(""))
6bd22b53
MW
328
329class KMAC128 (KMAC): _SHAKE = Shake128; _TAGSZ = 16
330class KMAC256 (KMAC): _SHAKE = Shake256; _TAGSZ = 32
331
bfb450cc 332###--------------------------------------------------------------------------
ce0340b6
MW
333### NaCl `secretbox'.
334
335def secret_box(k, n, m):
bebf03ab 336 y, t = salsa20_naclbox(k).encrypt(n, m)
bb5c23a4 337 return t + y
ce0340b6
MW
338
339def secret_unbox(k, n, c):
bebf03ab
MW
340 tsz = poly1305.tagsz
341 return salsa20_naclbox(k).decrypt(n, c[tsz:], c[0:tsz])
ce0340b6
MW
342
343###--------------------------------------------------------------------------
00401529 344### Multiprecision integers and binary polynomials.
ed8cc62d 345
2ef393b5 346def _split_rat(x):
83c77564 347 if isinstance(x, BaseRat): return x._n, x._d
2ef393b5 348 else: return x, 1
83c77564
MW
349class BaseRat (object):
350 """Base class implementing fields of fractions over Euclidean domains."""
2ef393b5 351 def __new__(cls, a, b):
83c77564 352 a, b = cls.RING(a), cls.RING(b)
2ef393b5
MW
353 q, r = divmod(a, b)
354 if r == 0: return q
355 g = b.gcd(r)
83c77564 356 me = super(BaseRat, cls).__new__(cls)
2ef393b5
MW
357 me._n = a//g
358 me._d = b//g
359 return me
360 @property
361 def numer(me): return me._n
362 @property
363 def denom(me): return me._d
364 def __str__(me): return '%s/%s' % (me._n, me._d)
330e6a74 365 def __repr__(me): return '%s(%s, %s)' % (_clsname(me), me._n, me._d)
96d7ed6c 366 _repr_pretty_ = _pp_str
2ef393b5
MW
367
368 def __add__(me, you):
369 n, d = _split_rat(you)
83c77564 370 return type(me)(me._n*d + n*me._d, d*me._d)
2ef393b5
MW
371 __radd__ = __add__
372 def __sub__(me, you):
373 n, d = _split_rat(you)
83c77564 374 return type(me)(me._n*d - n*me._d, d*me._d)
2ef393b5
MW
375 def __rsub__(me, you):
376 n, d = _split_rat(you)
83c77564 377 return type(me)(n*me._d - me._n*d, d*me._d)
2ef393b5
MW
378 def __mul__(me, you):
379 n, d = _split_rat(you)
83c77564 380 return type(me)(me._n*n, me._d*d)
08041ebb 381 __rmul__ = __mul__
b47818ea 382 def __truediv__(me, you):
2ef393b5 383 n, d = _split_rat(you)
83c77564 384 return type(me)(me._n*d, me._d*n)
b47818ea 385 def __rtruediv__(me, you):
2ef393b5 386 n, d = _split_rat(you)
83c77564 387 return type(me)(me._d*n, me._n*d)
b47818ea
MW
388 __div__ = __truediv__
389 __rdiv__ = __rtruediv__
54ee272d 390 def _order(me, you, op):
2ef393b5 391 n, d = _split_rat(you)
54ee272d
MW
392 return op(me._n*d, n*me._d)
393 def __eq__(me, you): return me._order(you, lambda x, y: x == y)
394 def __ne__(me, you): return me._order(you, lambda x, y: x != y)
395 def __le__(me, you): return me._order(you, lambda x, y: x <= y)
396 def __lt__(me, you): return me._order(you, lambda x, y: x < y)
397 def __gt__(me, you): return me._order(you, lambda x, y: x > y)
398 def __ge__(me, you): return me._order(you, lambda x, y: x >= y)
2ef393b5 399
83c77564
MW
400class IntRat (BaseRat):
401 RING = MP
402
403class GFRat (BaseRat):
404 RING = GF
405
d7ab1bab 406class _tmp:
407 def negp(x): return x < 0
408 def posp(x): return x > 0
409 def zerop(x): return x == 0
410 def oddp(x): return x.testbit(0)
411 def evenp(x): return not x.testbit(0)
412 def mont(x): return MPMont(x)
413 def barrett(x): return MPBarrett(x)
414 def reduce(x): return MPReduce(x)
b47818ea
MW
415 def __truediv__(me, you): return IntRat(me, you)
416 def __rtruediv__(me, you): return IntRat(you, me)
417 __div__ = __truediv__
418 __rdiv__ = __rtruediv__
96d7ed6c 419 _repr_pretty_ = _pp_str
d7ab1bab 420_augment(MP, _tmp)
421
d7ab1bab 422class _tmp:
fbc145f3 423 def zerop(x): return x == 0
ed8cc62d 424 def reduce(x): return GFReduce(x)
fbc145f3
MW
425 def trace(x, y): return x.reduce().trace(y)
426 def halftrace(x, y): return x.reduce().halftrace(y)
427 def modsqrt(x, y): return x.reduce().sqrt(y)
428 def quadsolve(x, y): return x.reduce().quadsolve(y)
b47818ea
MW
429 def __truediv__(me, you): return GFRat(me, you)
430 def __rtruediv__(me, you): return GFRat(you, me)
431 __div__ = __truediv__
432 __rdiv__ = __rtruediv__
96d7ed6c 433 _repr_pretty_ = _pp_str
d7ab1bab 434_augment(GF, _tmp)
435
436class _tmp:
ed8cc62d
MW
437 def product(*arg):
438 'product(ITERABLE) or product(I, ...) -> PRODUCT'
439 return MPMul(*arg).done()
440 product = staticmethod(product)
441_augment(MPMul, _tmp)
442
00401529
MW
443###--------------------------------------------------------------------------
444### Abstract fields.
ed8cc62d
MW
445
446class _tmp:
d7ab1bab 447 def fromstring(str): return _checkend(Field.parse(str))
448 fromstring = staticmethod(fromstring)
449_augment(Field, _tmp)
450
451class _tmp:
330e6a74 452 def __repr__(me): return '%s(%sL)' % (_clsname(me), me.p)
6d481bc6 453 def __hash__(me): return 0x114401de ^ hash(me.p)
96d7ed6c 454 def _repr_pretty_(me, pp, cyclep):
582568f1
MW
455 ind = _pp_bgroup_tyname(pp, me)
456 if cyclep: pp.text('...')
457 else: pp.pretty(me.p)
458 pp.end_group(ind, ')')
d7ab1bab 459 def ec(me, a, b): return ECPrimeProjCurve(me, a, b)
460_augment(PrimeField, _tmp)
461
462class _tmp:
330e6a74 463 def __repr__(me): return '%s(%#xL)' % (_clsname(me), me.p)
d7ab1bab 464 def ec(me, a, b): return ECBinProjCurve(me, a, b)
96d7ed6c 465 def _repr_pretty_(me, pp, cyclep):
582568f1
MW
466 ind = _pp_bgroup_tyname(pp, me)
467 if cyclep: pp.text('...')
468 else: pp.text('%#x' % me.p)
469 pp.end_group(ind, ')')
d7ab1bab 470_augment(BinField, _tmp)
471
472class _tmp:
6d481bc6
MW
473 def __hash__(me): return 0x23e4701c ^ hash(me.p)
474_augment(BinPolyField, _tmp)
475
476class _tmp:
477 def __hash__(me):
478 h = 0x9a7d6240
479 h ^= hash(me.p)
480 h ^= 2*hash(me.beta) & 0xffffffff
481 return h
482_augment(BinNormField, _tmp)
483
484class _tmp:
d7ab1bab 485 def __str__(me): return str(me.value)
486 def __repr__(me): return '%s(%s)' % (repr(me.field), repr(me.value))
96d7ed6c 487 _repr_pretty_ = _pp_str
d7ab1bab 488_augment(FE, _tmp)
489
00401529
MW
490###--------------------------------------------------------------------------
491### Elliptic curves.
d7ab1bab 492
493class _tmp:
494 def __repr__(me):
330e6a74 495 return '%s(%r, %s, %s)' % (_clsname(me), me.field, me.a, me.b)
96d7ed6c 496 def _repr_pretty_(me, pp, cyclep):
582568f1 497 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 498 if cyclep:
582568f1 499 pp.text('...')
96d7ed6c 500 else:
96d7ed6c
MW
501 pp.pretty(me.field); pp.text(','); pp.breakable()
502 pp.pretty(me.a); pp.text(','); pp.breakable()
503 pp.pretty(me.b)
582568f1 504 pp.end_group(ind, ')')
d7ab1bab 505 def frombuf(me, s):
506 return ecpt.frombuf(me, s)
507 def fromraw(me, s):
508 return ecpt.fromraw(me, s)
509 def pt(me, *args):
5f959e50 510 return me(*args)
d7ab1bab 511_augment(ECCurve, _tmp)
512
513class _tmp:
6d481bc6
MW
514 def __hash__(me):
515 h = 0x6751d341
516 h ^= hash(me.field)
517 h ^= 2*hash(me.a) ^ 0xffffffff
518 h ^= 5*hash(me.b) ^ 0xffffffff
519 return h
520_augment(ECPrimeCurve, _tmp)
521
522class _tmp:
523 def __hash__(me):
524 h = 0x2ac203c5
525 h ^= hash(me.field)
526 h ^= 2*hash(me.a) ^ 0xffffffff
527 h ^= 5*hash(me.b) ^ 0xffffffff
528 return h
529_augment(ECBinCurve, _tmp)
530
531class _tmp:
d7ab1bab 532 def __repr__(me):
330e6a74
MW
533 if not me: return '%s()' % _clsname(me)
534 return '%s(%s, %s)' % (_clsname(me), me.ix, me.iy)
d7ab1bab 535 def __str__(me):
536 if not me: return 'inf'
537 return '(%s, %s)' % (me.ix, me.iy)
96d7ed6c
MW
538 def _repr_pretty_(me, pp, cyclep):
539 if cyclep:
540 pp.text('...')
541 elif not me:
542 pp.text('inf')
543 else:
582568f1 544 ind = _pp_bgroup(pp, '(')
96d7ed6c
MW
545 pp.pretty(me.ix); pp.text(','); pp.breakable()
546 pp.pretty(me.iy)
582568f1 547 pp.end_group(ind, ')')
d7ab1bab 548_augment(ECPt, _tmp)
549
550class _tmp:
551 def __repr__(me):
330e6a74
MW
552 return '%s(curve = %r, G = %r, r = %s, h = %s)' % \
553 (_clsname(me), me.curve, me.G, me.r, me.h)
96d7ed6c 554 def _repr_pretty_(me, pp, cyclep):
582568f1 555 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 556 if cyclep:
582568f1 557 pp.text('...')
96d7ed6c 558 else:
96d7ed6c
MW
559 _pp_kv(pp, 'curve', me.curve); pp.text(','); pp.breakable()
560 _pp_kv(pp, 'G', me.G); pp.text(','); pp.breakable()
561 _pp_kv(pp, 'r', me.r); pp.text(','); pp.breakable()
562 _pp_kv(pp, 'h', me.h)
582568f1 563 pp.end_group(ind, ')')
6d481bc6
MW
564 def __hash__(me):
565 h = 0x9bedb8de
566 h ^= hash(me.curve)
567 h ^= 2*hash(me.G) & 0xffffffff
568 return h
d7ab1bab 569 def group(me):
570 return ECGroup(me)
571_augment(ECInfo, _tmp)
572
573class _tmp:
574 def __repr__(me):
575 if not me: return '%r()' % (me.curve)
576 return '%r(%s, %s)' % (me.curve, me.x, me.y)
577 def __str__(me):
578 if not me: return 'inf'
579 return '(%s, %s)' % (me.x, me.y)
7a7aa30e
MW
580 def _repr_pretty_(me, pp, cyclep):
581 if cyclep:
582 pp.text('...')
583 elif not me:
584 pp.text('inf')
585 else:
586 ind = _pp_bgroup(pp, '(')
587 pp.pretty(me.x); pp.text(','); pp.breakable()
588 pp.pretty(me.y)
589 pp.end_group(ind, ')')
d7ab1bab 590_augment(ECPtCurve, _tmp)
591
00401529
MW
592###--------------------------------------------------------------------------
593### Key sizes.
ed8cc62d 594
d7ab1bab 595class _tmp:
330e6a74 596 def __repr__(me): return '%s(%d)' % (_clsname(me), me.default)
d7ab1bab 597 def check(me, sz): return True
598 def best(me, sz): return sz
dfb915d3 599 def pad(me, sz): return sz
d7ab1bab 600_augment(KeySZAny, _tmp)
601
602class _tmp:
603 def __repr__(me):
330e6a74
MW
604 return '%s(%d, %d, %d, %d)' % \
605 (_clsname(me), me.default, me.min, me.max, me.mod)
96d7ed6c 606 def _repr_pretty_(me, pp, cyclep):
582568f1 607 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 608 if cyclep:
582568f1 609 pp.text('...')
96d7ed6c 610 else:
96d7ed6c
MW
611 pp.pretty(me.default); pp.text(','); pp.breakable()
612 pp.pretty(me.min); pp.text(','); pp.breakable()
613 pp.pretty(me.max); pp.text(','); pp.breakable()
614 pp.pretty(me.mod)
582568f1 615 pp.end_group(ind, ')')
dfb915d3 616 def check(me, sz): return me.min <= sz <= me.max and sz%me.mod == 0
d7ab1bab 617 def best(me, sz):
1c7419c9 618 if sz < me.min: raise ValueError('key too small')
d7ab1bab 619 elif sz > me.max: return me.max
dfb915d3
MW
620 else: return sz - sz%me.mod
621 def pad(me, sz):
1c7419c9 622 if sz > me.max: raise ValueError('key too large')
dfb915d3 623 elif sz < me.min: return me.min
8fc76cc0 624 else: sz += me.mod - 1; return sz - sz%me.mod
d7ab1bab 625_augment(KeySZRange, _tmp)
626
627class _tmp:
330e6a74 628 def __repr__(me): return '%s(%d, %s)' % (_clsname(me), me.default, me.set)
96d7ed6c 629 def _repr_pretty_(me, pp, cyclep):
582568f1 630 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 631 if cyclep:
582568f1 632 pp.text('...')
96d7ed6c 633 else:
96d7ed6c 634 pp.pretty(me.default); pp.text(','); pp.breakable()
582568f1 635 ind1 = _pp_bgroup(pp, '{')
96d7ed6c 636 _pp_commas(pp, pp.pretty, me.set)
582568f1
MW
637 pp.end_group(ind1, '}')
638 pp.end_group(ind, ')')
d7ab1bab 639 def check(me, sz): return sz in me.set
640 def best(me, sz):
641 found = -1
642 for i in me.set:
643 if found < i <= sz: found = i
1c7419c9 644 if found < 0: raise ValueError('key too small')
d7ab1bab 645 return found
dfb915d3
MW
646 def pad(me, sz):
647 found = -1
648 for i in me.set:
649 if sz <= i and (found == -1 or i < found): found = i
1c7419c9 650 if found < 0: raise ValueError('key too large')
dfb915d3 651 return found
d7ab1bab 652_augment(KeySZSet, _tmp)
653
00401529 654###--------------------------------------------------------------------------
96d7ed6c
MW
655### Key data objects.
656
657class _tmp:
618cbc92
MW
658 def merge(me, file, report = None):
659 """KF.merge(FILE, [report = <built-in-reporter>])"""
660 name = file.name
661 lno = 1
662 for line in file:
663 me.mergeline(name, lno, line, report)
664 lno += 1
665 return me
330e6a74 666 def __repr__(me): return '%s(%r)' % (_clsname(me), me.name)
96d7ed6c
MW
667_augment(KeyFile, _tmp)
668
669class _tmp:
618cbc92
MW
670 def extract(me, file, filter = ''):
671 """KEY.extract(FILE, [filter = <any>])"""
672 line = me.extractline(filter)
673 file.write(line)
674 return me
330e6a74 675 def __repr__(me): return '%s(%r)' % (_clsname(me), me.fulltag)
96d7ed6c
MW
676_augment(Key, _tmp)
677
678class _tmp:
679 def __repr__(me):
330e6a74 680 return '%s({%s})' % (_clsname(me),
d6542364 681 ', '.join(['%r: %r' % kv for kv in _iteritems(me)()]))
96d7ed6c 682 def _repr_pretty_(me, pp, cyclep):
582568f1 683 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 684 if cyclep: pp.text('...')
d6542364 685 else: _pp_dict(pp, _iteritems(me))
582568f1 686 pp.end_group(ind, ')')
96d7ed6c
MW
687_augment(KeyAttributes, _tmp)
688
689class _tmp:
849e8a20 690 def __repr__(me):
652e16ea
MW
691 return '%s(%s, %r)' % (_clsname(me),
692 _repr_secret(me._guts(),
693 not (me.flags & KF_NONSECRET)),
694 me.writeflags(me.flags))
96d7ed6c 695 def _repr_pretty_(me, pp, cyclep):
582568f1 696 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 697 if cyclep:
582568f1 698 pp.text('...')
96d7ed6c 699 else:
652e16ea
MW
700 _pp_secret(pp, me._guts(), not (me.flags & KF_NONSECRET))
701 pp.text(','); pp.breakable()
96d7ed6c 702 pp.pretty(me.writeflags(me.flags))
582568f1 703 pp.end_group(ind, ')')
849e8a20
MW
704_augment(KeyData, _tmp)
705
706class _tmp:
707 def _guts(me): return me.bin
96d7ed6c
MW
708_augment(KeyDataBinary, _tmp)
709
710class _tmp:
849e8a20 711 def _guts(me): return me.ct
96d7ed6c
MW
712_augment(KeyDataEncrypted, _tmp)
713
714class _tmp:
849e8a20 715 def _guts(me): return me.mp
96d7ed6c
MW
716_augment(KeyDataMP, _tmp)
717
718class _tmp:
849e8a20 719 def _guts(me): return me.str
96d7ed6c
MW
720_augment(KeyDataString, _tmp)
721
722class _tmp:
849e8a20 723 def _guts(me): return me.ecpt
96d7ed6c
MW
724_augment(KeyDataECPt, _tmp)
725
726class _tmp:
727 def __repr__(me):
330e6a74 728 return '%s({%s})' % (_clsname(me),
d6542364 729 ', '.join(['%r: %r' % kv for kv in _iteritems(me)]))
96d7ed6c 730 def _repr_pretty_(me, pp, cyclep):
582568f1 731 ind = _pp_bgroup_tyname(pp, me, '({ ')
96d7ed6c 732 if cyclep: pp.text('...')
d6542364 733 else: _pp_dict(pp, _iteritems(me))
582568f1 734 pp.end_group(ind, ' })')
96d7ed6c
MW
735_augment(KeyDataStructured, _tmp)
736
737###--------------------------------------------------------------------------
00401529 738### Abstract groups.
ed8cc62d 739
d7ab1bab 740class _tmp:
741 def __repr__(me):
330e6a74 742 return '%s(p = %s, r = %s, g = %s)' % (_clsname(me), me.p, me.r, me.g)
96d7ed6c 743 def _repr_pretty_(me, pp, cyclep):
582568f1 744 ind = _pp_bgroup_tyname(pp, me)
96d7ed6c 745 if cyclep:
582568f1 746 pp.text('...')
96d7ed6c 747 else:
96d7ed6c
MW
748 _pp_kv(pp, 'p', me.p); pp.text(','); pp.breakable()
749 _pp_kv(pp, 'r', me.r); pp.text(','); pp.breakable()
750 _pp_kv(pp, 'g', me.g)
582568f1 751 pp.end_group(ind, ')')
d7ab1bab 752_augment(FGInfo, _tmp)
753
754class _tmp:
755 def group(me): return PrimeGroup(me)
756_augment(DHInfo, _tmp)
757
758class _tmp:
759 def group(me): return BinGroup(me)
760_augment(BinDHInfo, _tmp)
761
762class _tmp:
763 def __repr__(me):
330e6a74 764 return '%s(%r)' % (_clsname(me), me.info)
99d932fe
MW
765 def _repr_pretty_(me, pp, cyclep):
766 ind = _pp_bgroup_tyname(pp, me)
767 if cyclep: pp.text('...')
768 else: pp.pretty(me.info)
769 pp.end_group(ind, ')')
d7ab1bab 770_augment(Group, _tmp)
771
772class _tmp:
6d481bc6
MW
773 def __hash__(me):
774 info = me.info
775 h = 0xbce3cfe6
776 h ^= hash(info.p)
777 h ^= 2*hash(info.r) & 0xffffffff
778 h ^= 5*hash(info.g) & 0xffffffff
779 return h
d7012c2b 780 def _get_geval(me, x): return MP(x)
6d481bc6
MW
781_augment(PrimeGroup, _tmp)
782
783class _tmp:
784 def __hash__(me):
785 info = me.info
786 h = 0x80695949
787 h ^= hash(info.p)
788 h ^= 2*hash(info.r) & 0xffffffff
789 h ^= 5*hash(info.g) & 0xffffffff
790 return h
d7012c2b 791 def _get_geval(me, x): return GF(x)
6d481bc6
MW
792_augment(BinGroup, _tmp)
793
794class _tmp:
795 def __hash__(me): return 0x0ec23dab ^ hash(me.info)
d7012c2b 796 def _get_geval(me, x): return x.toec()
6d481bc6
MW
797_augment(ECGroup, _tmp)
798
799class _tmp:
d7ab1bab 800 def __repr__(me):
801 return '%r(%r)' % (me.group, str(me))
d7012c2b
MW
802 def _repr_pretty_(me, pp, cyclep):
803 pp.pretty(type(me)._get_geval(me))
d7ab1bab 804_augment(GE, _tmp)
805
00401529
MW
806###--------------------------------------------------------------------------
807### RSA encoding techniques.
ed8cc62d
MW
808
809class PKCS1Crypt (object):
467c2619 810 def __init__(me, ep = _bin(''), rng = rand):
d7ab1bab 811 me.ep = ep
812 me.rng = rng
813 def encode(me, msg, nbits):
814 return _base._p1crypt_encode(msg, nbits, me.ep, me.rng)
815 def decode(me, ct, nbits):
816 return _base._p1crypt_decode(ct, nbits, me.ep, me.rng)
817
ed8cc62d 818class PKCS1Sig (object):
467c2619 819 def __init__(me, ep = _bin(''), rng = rand):
d7ab1bab 820 me.ep = ep
821 me.rng = rng
822 def encode(me, msg, nbits):
823 return _base._p1sig_encode(msg, nbits, me.ep, me.rng)
824 def decode(me, msg, sig, nbits):
825 return _base._p1sig_decode(msg, sig, nbits, me.ep, me.rng)
826
ed8cc62d 827class OAEP (object):
467c2619 828 def __init__(me, mgf = sha_mgf, hash = sha, ep = _bin(''), rng = rand):
d7ab1bab 829 me.mgf = mgf
830 me.hash = hash
831 me.ep = ep
832 me.rng = rng
833 def encode(me, msg, nbits):
834 return _base._oaep_encode(msg, nbits, me.mgf, me.hash, me.ep, me.rng)
835 def decode(me, ct, nbits):
836 return _base._oaep_decode(ct, nbits, me.mgf, me.hash, me.ep, me.rng)
837
ed8cc62d 838class PSS (object):
d7ab1bab 839 def __init__(me, mgf = sha_mgf, hash = sha, saltsz = None, rng = rand):
840 me.mgf = mgf
841 me.hash = hash
842 if saltsz is None:
843 saltsz = hash.hashsz
844 me.saltsz = saltsz
845 me.rng = rng
846 def encode(me, msg, nbits):
847 return _base._pss_encode(msg, nbits, me.mgf, me.hash, me.saltsz, me.rng)
848 def decode(me, msg, sig, nbits):
849 return _base._pss_decode(msg, sig, nbits,
00401529 850 me.mgf, me.hash, me.saltsz, me.rng)
d7ab1bab 851
852class _tmp:
853 def encrypt(me, msg, enc):
854 return me.pubop(enc.encode(msg, me.n.nbits))
855 def verify(me, msg, sig, enc):
856 if msg is None: return enc.decode(msg, me.pubop(sig), me.n.nbits)
857 try:
858 x = enc.decode(msg, me.pubop(sig), me.n.nbits)
859 return x is None or x == msg
860 except ValueError:
b2687a0a 861 return False
bbd94558
MW
862 def __repr__(me):
863 return '%s(n = %r, e = %r)' % (_clsname(me), me.n, me.e)
864 def _repr_pretty_(me, pp, cyclep):
865 ind = _pp_bgroup_tyname(pp, me)
866 if cyclep:
867 pp.text('...')
868 else:
869 _pp_kv(pp, 'n', me.n); pp.text(','); pp.breakable()
870 _pp_kv(pp, 'e', me.e)
871 pp.end_group(ind, ')')
d7ab1bab 872_augment(RSAPub, _tmp)
873
874class _tmp:
875 def decrypt(me, ct, enc): return enc.decode(me.privop(ct), me.n.nbits)
876 def sign(me, msg, enc): return me.privop(enc.encode(msg, me.n.nbits))
bbd94558
MW
877 def __repr__(me):
878 return '%s(n = %r, e = %r, d = %s, ' \
879 'p = %s, q = %s, dp = %s, dq = %s, q_inv = %s)' % \
880 (_clsname(me), me.n, me.e,
881 _repr_secret(me.d), _repr_secret(me.p), _repr_secret(me.q),
882 _repr_secret(me.dp), _repr_secret(me.dq), _repr_secret(me.q_inv))
883 def _repr_pretty_(me, pp, cyclep):
884 ind = _pp_bgroup_tyname(pp, me)
885 if cyclep:
886 pp.text('...')
887 else:
888 _pp_kv(pp, 'n', me.n); pp.text(','); pp.breakable()
889 _pp_kv(pp, 'e', me.e); pp.text(','); pp.breakable()
890 _pp_kv(pp, 'd', me.d, secretp = True); pp.text(','); pp.breakable()
891 _pp_kv(pp, 'p', me.p, secretp = True); pp.text(','); pp.breakable()
892 _pp_kv(pp, 'q', me.q, secretp = True); pp.text(','); pp.breakable()
893 _pp_kv(pp, 'dp', me.dp, secretp = True); pp.text(','); pp.breakable()
894 _pp_kv(pp, 'dq', me.dq, secretp = True); pp.text(','); pp.breakable()
895 _pp_kv(pp, 'q_inv', me.q_inv, secretp = True)
896 pp.end_group(ind, ')')
d7ab1bab 897_augment(RSAPriv, _tmp)
898
00401529 899###--------------------------------------------------------------------------
bbd94558
MW
900### DSA and related schemes.
901
902class _tmp:
1b3b79da
MW
903 def __repr__(me): return '%s(G = %r, p = %r, hash = %r)' % \
904 (_clsname(me), me.G, me.p, me.hash)
bbd94558
MW
905 def _repr_pretty_(me, pp, cyclep):
906 ind = _pp_bgroup_tyname(pp, me)
907 if cyclep:
908 pp.text('...')
909 else:
910 _pp_kv(pp, 'G', me.G); pp.text(','); pp.breakable()
1b3b79da
MW
911 _pp_kv(pp, 'p', me.p); pp.text(','); pp.breakable()
912 _pp_kv(pp, 'hash', me.hash)
bbd94558
MW
913 pp.end_group(ind, ')')
914_augment(DSAPub, _tmp)
915_augment(KCDSAPub, _tmp)
916
917class _tmp:
1b3b79da
MW
918 def __repr__(me): return '%s(G = %r, u = %s, p = %r, hash = %r)' % \
919 (_clsname(me), me.G, _repr_secret(me.u), me.p, me.hash)
bbd94558
MW
920 def _repr_pretty_(me, pp, cyclep):
921 ind = _pp_bgroup_tyname(pp, me)
922 if cyclep:
923 pp.text('...')
924 else:
925 _pp_kv(pp, 'G', me.G); pp.text(','); pp.breakable()
926 _pp_kv(pp, 'u', me.u, True); pp.text(','); pp.breakable()
1b3b79da
MW
927 _pp_kv(pp, 'p', me.p); pp.text(','); pp.breakable()
928 _pp_kv(pp, 'hash', me.hash)
bbd94558
MW
929 pp.end_group(ind, ')')
930_augment(DSAPriv, _tmp)
931_augment(KCDSAPriv, _tmp)
932
933###--------------------------------------------------------------------------
eb8aa4ec 934### Bernstein's elliptic curve crypto and related schemes.
848ba392 935
8e6f45a3
MW
936X25519_BASE = MP(9).storel(32)
937X448_BASE = MP(5).storel(56)
eb8aa4ec 938
5a8b43b3 939Z128 = ByteString.zero(16)
848ba392 940
925aa45b 941class _BasePub (object):
f40e338b 942 def __init__(me, pub, *args, **kw):
1c7419c9 943 if not me._PUBSZ.check(len(pub)): raise ValueError('bad public key')
925aa45b 944 super(_BasePub, me).__init__(*args, **kw)
848ba392 945 me.pub = pub
bbd94558 946 def __repr__(me): return '%s(pub = %r)' % (_clsname(me), me.pub)
925aa45b 947 def _pp(me, pp): _pp_kv(pp, 'pub', me.pub)
bbd94558
MW
948 def _repr_pretty_(me, pp, cyclep):
949 ind = _pp_bgroup_tyname(pp, me)
925aa45b
MW
950 if cyclep: pp.text('...')
951 else: me._pp(pp)
bbd94558 952 pp.end_group(ind, ')')
848ba392 953
925aa45b 954class _BasePriv (object):
f40e338b 955 def __init__(me, priv, pub = None, *args, **kw):
1c7419c9 956 if not me._KEYSZ.check(len(priv)): raise ValueError('bad private key')
925aa45b
MW
957 if pub is None: pub = me._pubkey(priv)
958 super(_BasePriv, me).__init__(pub = pub, *args, **kw)
848ba392 959 me.priv = priv
925aa45b
MW
960 @classmethod
961 def generate(cls, rng = rand):
962 return cls(rng.block(cls._KEYSZ.default))
963 def __repr__(me):
964 return '%s(priv = %d, pub = %r)' % \
965 (_clsname(me), _repr_secret(me.priv), me.pub)
966 def _pp(me, pp):
967 _pp_kv(pp, 'priv', me.priv, secretp = True); pp.text(','); pp.breakable()
968 super(_BasePriv, me)._pp(pp)
969
970class _XDHPub (_BasePub): pass
971
972class _XDHPriv (_BasePriv):
973 def _pubkey(me, priv): return me._op(priv, me._BASE)
848ba392 974 def agree(me, you): return me._op(me.priv, you.pub)
925aa45b
MW
975 def boxkey(me, recip): return me._hashkey(me.agree(recip))
976 def box(me, recip, n, m): return secret_box(me.boxkey(recip), n, m)
977 def unbox(me, recip, n, c): return secret_unbox(me.boxkey(recip), n, c)
848ba392 978
925aa45b
MW
979class X25519Pub (_XDHPub):
980 _PUBSZ = KeySZSet(X25519_PUBSZ)
848ba392
MW
981 _BASE = X25519_BASE
982
925aa45b
MW
983class X25519Priv (_XDHPriv, X25519Pub):
984 _KEYSZ = KeySZSet(X25519_KEYSZ)
848ba392
MW
985 def _op(me, k, X): return x25519(k, X)
986 def _hashkey(me, z): return hsalsa20_prf(z, Z128)
987
925aa45b
MW
988class X448Pub (_XDHPub):
989 _PUBSZ = KeySZSet(X448_PUBSZ)
eb8aa4ec
MW
990 _BASE = X448_BASE
991
925aa45b
MW
992class X448Priv (_XDHPriv, X448Pub):
993 _KEYSZ = KeySZSet(X448_KEYSZ)
eb8aa4ec 994 def _op(me, k, X): return x448(k, X)
f1b0cf0d 995 def _hashkey(me, z): return Shake256().hash(z).done(salsa20.keysz.default)
eb8aa4ec 996
925aa45b 997class _EdDSAPub (_BasePub):
058f0a00
MW
998 def beginhash(me): return me._HASH()
999 def endhash(me, h): return h.done()
925aa45b
MW
1000
1001class _EdDSAPriv (_BasePriv, _EdDSAPub):
1002 pass
1003
1004class Ed25519Pub (_EdDSAPub):
1005 _PUBSZ = KeySZSet(ED25519_PUBSZ)
058f0a00 1006 _HASH = sha512
5c4c0231
MW
1007 def verify(me, msg, sig, **kw):
1008 return ed25519_verify(me.pub, msg, sig, **kw)
dafb2da4 1009
925aa45b
MW
1010class Ed25519Priv (_EdDSAPriv, Ed25519Pub):
1011 _KEYSZ = KeySZAny(ED25519_KEYSZ)
1012 def _pubkey(me, priv): return ed25519_pubkey(priv)
5c4c0231
MW
1013 def sign(me, msg, **kw):
1014 return ed25519_sign(me.priv, msg, pub = me.pub, **kw)
dafb2da4 1015
eee202c3
MW
1016class Ed448Pub (_EdDSAPub):
1017 _PUBSZ = KeySZSet(ED448_PUBSZ)
1018 _HASH = shake256
1019 def verify(me, msg, sig, **kw):
1020 return ed448_verify(me.pub, msg, sig, **kw)
1021
1022class Ed448Priv (_EdDSAPriv, Ed448Pub):
1023 _KEYSZ = KeySZAny(ED448_KEYSZ)
1024 def _pubkey(me, priv): return ed448_pubkey(priv)
1025 def sign(me, msg, **kw):
1026 return ed448_sign(me.priv, msg, pub = me.pub, **kw)
1027
848ba392 1028###--------------------------------------------------------------------------
a539ffb8
MW
1029### Built-in algorithm and group tables.
1030
1031class _tmp:
ed8cc62d 1032 def __repr__(me):
d6542364 1033 return '{%s}' % ', '.join(['%r: %r' % kv for kv in _iteritems(me)])
96d7ed6c 1034 def _repr_pretty_(me, pp, cyclep):
582568f1
MW
1035 ind = _pp_bgroup(pp, '{ ')
1036 if cyclep: pp.text('...')
d6542364 1037 else: _pp_dict(pp, _iteritems(me))
582568f1 1038 pp.end_group(ind, ' }')
a539ffb8 1039_augment(_base._MiscTable, _tmp)
ed8cc62d 1040
00401529
MW
1041###--------------------------------------------------------------------------
1042### Prime number generation.
ed8cc62d
MW
1043
1044class PrimeGenEventHandler (object):
1045 def pg_begin(me, ev):
1046 return me.pg_try(ev)
1047 def pg_done(me, ev):
1048 return PGEN_DONE
1049 def pg_abort(me, ev):
1050 return PGEN_TRY
1051 def pg_fail(me, ev):
1052 return PGEN_TRY
1053 def pg_pass(me, ev):
1054 return PGEN_TRY
d7ab1bab 1055
1056class SophieGermainStepJump (object):
1057 def pg_begin(me, ev):
1058 me.lf = PrimeFilter(ev.x)
1059 me.hf = me.lf.muladd(2, 1)
1060 return me.cont(ev)
1061 def pg_try(me, ev):
1062 me.step()
1063 return me.cont(ev)
1064 def cont(me, ev):
1065 while me.lf.status == PGEN_FAIL or me.hf.status == PGEN_FAIL:
1066 me.step()
1067 if me.lf.status == PGEN_ABORT or me.hf.status == PGEN_ABORT:
1068 return PGEN_ABORT
1069 ev.x = me.lf.x
1070 if me.lf.status == PGEN_DONE and me.hf.status == PGEN_DONE:
1071 return PGEN_DONE
1072 return PGEN_TRY
1073 def pg_done(me, ev):
1074 del me.lf
1075 del me.hf
1076
1077class SophieGermainStepper (SophieGermainStepJump):
1078 def __init__(me, step):
1079 me.lstep = step;
1080 me.hstep = 2 * step
1081 def step(me):
1082 me.lf.step(me.lstep)
1083 me.hf.step(me.hstep)
1084
1085class SophieGermainJumper (SophieGermainStepJump):
1086 def __init__(me, jump):
1087 me.ljump = PrimeFilter(jump);
1088 me.hjump = me.ljump.muladd(2, 0)
1089 def step(me):
1090 me.lf.jump(me.ljump)
1091 me.hf.jump(me.hjump)
1092 def pg_done(me, ev):
1093 del me.ljump
1094 del me.hjump
1095 SophieGermainStepJump.pg_done(me, ev)
1096
1097class SophieGermainTester (object):
1098 def __init__(me):
1099 pass
1100 def pg_begin(me, ev):
1101 me.lr = RabinMiller(ev.x)
1102 me.hr = RabinMiller(2 * ev.x + 1)
1103 def pg_try(me, ev):
1104 lst = me.lr.test(ev.rng.range(me.lr.x))
1105 if lst != PGEN_PASS and lst != PGEN_DONE:
1106 return lst
1107 rst = me.hr.test(ev.rng.range(me.hr.x))
1108 if rst != PGEN_PASS and rst != PGEN_DONE:
1109 return rst
1110 if lst == PGEN_DONE and rst == PGEN_DONE:
1111 return PGEN_DONE
1112 return PGEN_PASS
1113 def pg_done(me, ev):
1114 del me.lr
1115 del me.hr
1116
d7ab1bab 1117class PrimitiveStepper (PrimeGenEventHandler):
1118 def __init__(me):
1119 pass
1120 def pg_try(me, ev):
1121 ev.x = me.i.next()
1122 return PGEN_TRY
1123 def pg_begin(me, ev):
1124 me.i = iter(smallprimes)
1125 return me.pg_try(ev)
1126
1127class PrimitiveTester (PrimeGenEventHandler):
1128 def __init__(me, mod, hh = [], exp = None):
1129 me.mod = MPMont(mod)
1130 me.exp = exp
1131 me.hh = hh
1132 def pg_try(me, ev):
1133 x = ev.x
1134 if me.exp is not None:
1135 x = me.mod.exp(x, me.exp)
1136 if x == 1: return PGEN_FAIL
1137 for h in me.hh:
1138 if me.mod.exp(x, h) == 1: return PGEN_FAIL
1139 ev.x = x
1140 return PGEN_DONE
1141
1142class SimulStepper (PrimeGenEventHandler):
1143 def __init__(me, mul = 2, add = 1, step = 2):
1144 me.step = step
1145 me.mul = mul
1146 me.add = add
1147 def _stepfn(me, step):
1148 if step <= 0:
1c7419c9 1149 raise ValueError('step must be positive')
d7ab1bab 1150 if step <= MPW_MAX:
1151 return lambda f: f.step(step)
1152 j = PrimeFilter(step)
1153 return lambda f: f.jump(j)
1154 def pg_begin(me, ev):
1155 x = ev.x
1156 me.lf = PrimeFilter(x)
1157 me.hf = PrimeFilter(x * me.mul + me.add)
1158 me.lstep = me._stepfn(me.step)
1159 me.hstep = me._stepfn(me.step * me.mul)
1160 SimulStepper._cont(me, ev)
1161 def pg_try(me, ev):
1162 me._step()
1163 me._cont(ev)
1164 def _step(me):
1165 me.lstep(me.lf)
1166 me.hstep(me.hf)
1167 def _cont(me, ev):
1168 while me.lf.status == PGEN_FAIL or me.hf.status == PGEN_FAIL:
1169 me._step()
1170 if me.lf.status == PGEN_ABORT or me.hf.status == PGEN_ABORT:
1171 return PGEN_ABORT
1172 ev.x = me.lf.x
1173 if me.lf.status == PGEN_DONE and me.hf.status == PGEN_DONE:
1174 return PGEN_DONE
1175 return PGEN_TRY
1176 def pg_done(me, ev):
1177 del me.lf
1178 del me.hf
1179 del me.lstep
1180 del me.hstep
1181
1182class SimulTester (PrimeGenEventHandler):
1183 def __init__(me, mul = 2, add = 1):
1184 me.mul = mul
1185 me.add = add
1186 def pg_begin(me, ev):
1187 x = ev.x
1188 me.lr = RabinMiller(x)
1189 me.hr = RabinMiller(x * me.mul + me.add)
1190 def pg_try(me, ev):
1191 lst = me.lr.test(ev.rng.range(me.lr.x))
1192 if lst != PGEN_PASS and lst != PGEN_DONE:
1193 return lst
1194 rst = me.hr.test(ev.rng.range(me.hr.x))
1195 if rst != PGEN_PASS and rst != PGEN_DONE:
1196 return rst
1197 if lst == PGEN_DONE and rst == PGEN_DONE:
1198 return PGEN_DONE
1199 return PGEN_PASS
1200 def pg_done(me, ev):
1201 del me.lr
1202 del me.hr
1203
1204def sgprime(start, step = 2, name = 'p', event = pgen_nullev, nsteps = 0):
1205 start = MP(start)
1206 return pgen(start, name, SimulStepper(step = step), SimulTester(), event,
00401529 1207 nsteps, RabinMiller.iters(start.nbits))
d7ab1bab 1208
1209def findprimitive(mod, hh = [], exp = None, name = 'g', event = pgen_nullev):
1210 return pgen(0, name, PrimitiveStepper(), PrimitiveTester(mod, hh, exp),
00401529 1211 event, 0, 1)
d7ab1bab 1212
1213def kcdsaprime(pbits, qbits, rng = rand,
00401529 1214 event = pgen_nullev, name = 'p', nsteps = 0):
d7ab1bab 1215 hbits = pbits - qbits
1216 h = pgen(rng.mp(hbits, 1), name + ' [h]',
00401529
MW
1217 PrimeGenStepper(2), PrimeGenTester(),
1218 event, nsteps, RabinMiller.iters(hbits))
d7ab1bab 1219 q = pgen(rng.mp(qbits, 1), name, SimulStepper(2 * h, 1, 2),
00401529 1220 SimulTester(2 * h, 1), event, nsteps, RabinMiller.iters(qbits))
d7ab1bab 1221 p = 2 * q * h + 1
1222 return p, q, h
1223
1224#----- That's all, folks ----------------------------------------------------