3 * Abstract group inteface
5 * (c) 2004 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the Python interface to Catacomb.
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.
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.
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.
27 /*----- Header files ------------------------------------------------------*/
29 #include "catacomb-python.h"
31 /*----- DH and binary group infos -----------------------------------------*/
33 PyObject *fginfo_pywrap(gprime_param *dp, PyTypeObject *ty)
35 fginfo_pyobj *z = PyObject_New(fginfo_pyobj, ty);
37 return ((PyObject *)z);
40 static PyObject *fginfo_pynew(PyTypeObject *ty,
41 PyObject *arg, PyObject *kw)
43 char *kwlist[] = { "p", "r", "g", 0 };
44 gprime_param dp = { 0 };
47 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&O&O&:new", kwlist,
52 z = PyObject_New(fginfo_pyobj, ty);
54 return ((PyObject *)z);
62 static PyObject *figet_r(PyObject *me, void *hunoz)
63 { return mp_pywrap(MP_COPY(FGINFO_DP(me)->q)); }
65 static PyObject *diget_p(PyObject *me, void *hunoz)
66 { return mp_pywrap(MP_COPY(FGINFO_DP(me)->p)); }
68 static PyObject *diget_g(PyObject *me, void *hunoz)
69 { return mp_pywrap(MP_COPY(FGINFO_DP(me)->g)); }
71 static PyObject *biget_p(PyObject *me, void *hunoz)
72 { return gf_pywrap(MP_COPY(FGINFO_DP(me)->p)); }
74 static PyObject *biget_m(PyObject *me, void *hunoz)
75 { return PyInt_FromLong(mp_octets(FGINFO_DP(me)->p) - 1); }
77 static PyObject *biget_g(PyObject *me, void *hunoz)
78 { return gf_pywrap(MP_COPY(FGINFO_DP(me)->g)); }
80 static void fginfo_pydealloc(PyObject *me)
82 mp_drop(FGINFO_DP(me)->p);
83 mp_drop(FGINFO_DP(me)->q);
84 mp_drop(FGINFO_DP(me)->g);
88 static PyObject *meth__DHInfo_generate(PyObject *me,
89 PyObject *arg, PyObject *kw)
94 grand *r = &rand_global;
97 { "class", "pbits", "qbits", "event", "rng", "nsteps", 0 };
100 if (!PyArg_ParseTupleAndKeywords(arg, kw, "OO&|O&O&O&O&:generate", kwlist,
101 &me, convuint, &pl, convuint, &ql,
102 convpgev, &evt, convgrand, &r,
105 if (dh_gen(&dp, ql, pl, steps, r, evt.proc, evt.ctx))
107 rc = fginfo_pywrap(&dp, dhinfo_pytype);
113 static PyObject *meth__DHInfo_genlimlee(PyObject *me,
114 PyObject *arg, PyObject *kw)
119 grand *r = &rand_global;
120 pgev oe = { 0 }, ie = { 0 };
123 char *kwlist[] = { "class", "pbits", "qbits", "event", "ievent",
124 "rng", "nsteps", "subgroupp", 0 };
127 PyObject *rc = 0, *vec = 0;
129 if (!PyArg_ParseTupleAndKeywords(arg, kw,
130 "OO&O&|O&O&O&O&O&:genlimlee", kwlist,
131 &me, convuint, &pl, convuint, &ql,
132 convpgev, &oe, convpgev, &ie,
133 convgrand, &r, convuint, &steps,
134 convbool, &subgroupp))
136 if (subgroupp) f |= DH_SUBGROUP;
137 if (dh_limlee(&dp, ql, pl, f, steps, r,
138 oe.proc, oe.ctx, ie.proc, ie.ctx, &nf, &v))
140 vec = PyList_New(nf);
141 for (i = 0; i < nf; i++)
142 PyList_SetItem(vec, i, mp_pywrap(v[i]));
144 rc = Py_BuildValue("(NN)", fginfo_pywrap(&dp, dhinfo_pytype), vec);
146 droppgev(&oe); droppgev(&ie);
150 static PyObject *meth__DHInfo_genkcdsa(PyObject *me,
151 PyObject *arg, PyObject *kw)
156 grand *r = &rand_global;
158 char *kwlist[] = { "class", "pbits", "qbits",
159 "event", "rng", "nsteps", 0 };
163 if (!PyArg_ParseTupleAndKeywords(arg, kw, "OO&O&|O&O&O&:genkcdsa", kwlist,
164 &me, convuint, &pl, convuint, &ql,
165 convpgev, &evt, convgrand, &r,
168 if (dh_kcdsagen(&dp, ql, pl, 0, steps, r, evt.proc, evt.ctx))
170 mp_div(&v, 0, dp.p, dp.q);
172 rc = Py_BuildValue("(NN)", fginfo_pywrap(&dp, dhinfo_pytype),
179 static PyObject *meth__DHInfo_gendsa(PyObject *me,
180 PyObject *arg, PyObject *kw)
190 { "class", "pbits", "qbits", "seed", "event", "nsteps", 0 };
193 if (!PyArg_ParseTupleAndKeywords(arg, kw, "OO&O&s#|O&O&:gendsa", kwlist,
194 &me, convuint, &pl, convuint, &ql,
195 &k, &ksz, convpgev, &evt,
198 if (dsa_gen(&dp, ql, pl, steps, k, ksz, &ds, evt.proc, evt.ctx))
200 rc = Py_BuildValue("(NNl)", fginfo_pywrap(&dp, dhinfo_pytype),
201 bytestring_pywrap(ds.p, ds.sz), (long)ds.count);
208 static int npgroups = -1, nbingroups = -1;
210 static PyObject *namedgroups(const pentry *pp, int *ne)
217 for (i = 0; pp[i].name; i++) {
219 for (j = 0; j < i; j++) {
220 if (pp[i].data == pp[j].data) {
221 c = PyDict_GetItemString(d, (/*unconst*/ char *)pp[j].name);
226 c = PyInt_FromLong(i);
228 PyDict_SetItemString(d, (/*unconst*/ char *)p, c);
235 static PyObject *meth__groupn(PyObject *me, PyObject *arg,
236 PyTypeObject *ty, const pentry *pp, int ne)
242 if (!PyArg_ParseTuple(arg, "Oi:_groupn", &me, &i)) goto end;
243 if (i < 0 || i >= ne) VALERR("group index out of range");
244 dh_infofromdata(&gp, pp[i].data);
245 rc = fginfo_pywrap(&gp, ty);
250 static PyObject *meth__DHInfo__groupn(PyObject *me, PyObject *arg)
251 { return (meth__groupn(me, arg, dhinfo_pytype, ptab, npgroups)); }
253 static PyObject *meth__BinDHInfo__groupn(PyObject *me, PyObject *arg)
254 { return (meth__groupn(me, arg, bindhinfo_pytype, bintab, nbingroups)); }
256 static PyObject *meth__parse(PyObject *me, PyObject *arg, PyTypeObject *ty,
257 int (*parse)(qd_parse *, gprime_param *))
264 if (!PyArg_ParseTuple(arg, "Os:parse", &me, &p)) goto end;
267 if (parse(&qd, &gp)) SYNERR(qd.e);
268 rc = fginfo_pywrap(&gp, ty);
273 static PyObject *meth__DHInfo_parse(PyObject *me, PyObject *arg)
274 { return (meth__parse(me, arg, dhinfo_pytype, dh_parse)); }
276 static PyObject *meth__BinDHInfo_parse(PyObject *me, PyObject *arg)
277 { return (meth__parse(me, arg, bindhinfo_pytype, dhbin_parse)); }
279 static PyGetSetDef fginfo_pygetset[] = {
280 #define GETSETNAME(op, name) fi##op##_##name
281 GET (r, "I.r -> group order")
286 static PyGetSetDef dhinfo_pygetset[] = {
287 #define GETSETNAME(op, name) di##op##_##name
288 GET (p, "I.p -> prime")
289 GET (g, "I.g -> generator")
294 static PyGetSetDef bindhinfo_pygetset[] = {
295 #define GETSETNAME(op, name) bi##op##_##name
296 GET (p, "I.p -> irreducible polynomial")
297 GET (m, "I.m -> degree of polynomial")
298 GET (g, "I.g -> generator")
303 static PyTypeObject fginfo_pytype_skel = {
304 PyObject_HEAD_INIT(0) 0, /* Header */
305 "FGInfo", /* @tp_name@ */
306 sizeof(fginfo_pyobj), /* @tp_basicsize@ */
307 0, /* @tp_itemsize@ */
309 fginfo_pydealloc, /* @tp_dealloc@ */
311 0, /* @tp_getattr@ */
312 0, /* @tp_setattr@ */
313 0, /* @tp_compare@ */
315 0, /* @tp_as_number@ */
316 0, /* @tp_as_sequence@ */
317 0, /* @tp_as_mapping@ */
321 0, /* @tp_getattro@ */
322 0, /* @tp_setattro@ */
323 0, /* @tp_as_buffer@ */
324 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
328 "Abstract base class for field-group information objects.",
330 0, /* @tp_traverse@ */
332 0, /* @tp_richcompare@ */
333 0, /* @tp_weaklistoffset@ */
335 0, /* @tp_iternext@ */
336 0, /* @tp_methods@ */
337 0, /* @tp_members@ */
338 fginfo_pygetset, /* @tp_getset@ */
341 0, /* @tp_descr_get@ */
342 0, /* @tp_descr_set@ */
343 0, /* @tp_dictoffset@ */
345 PyType_GenericAlloc, /* @tp_alloc@ */
346 abstract_pynew, /* @tp_new@ */
351 static PyTypeObject dhinfo_pytype_skel = {
352 PyObject_HEAD_INIT(0) 0, /* Header */
353 "DHInfo", /* @tp_name@ */
354 sizeof(fginfo_pyobj), /* @tp_basicsize@ */
355 0, /* @tp_itemsize@ */
357 fginfo_pydealloc, /* @tp_dealloc@ */
359 0, /* @tp_getattr@ */
360 0, /* @tp_setattr@ */
361 0, /* @tp_compare@ */
363 0, /* @tp_as_number@ */
364 0, /* @tp_as_sequence@ */
365 0, /* @tp_as_mapping@ */
369 0, /* @tp_getattro@ */
370 0, /* @tp_setattro@ */
371 0, /* @tp_as_buffer@ */
372 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
376 "Standard (integer) Diffie-Hellman group information.",
378 0, /* @tp_traverse@ */
380 0, /* @tp_richcompare@ */
381 0, /* @tp_weaklistoffset@ */
383 0, /* @tp_iternext@ */
384 0, /* @tp_methods@ */
385 0, /* @tp_members@ */
386 dhinfo_pygetset, /* @tp_getset@ */
389 0, /* @tp_descr_get@ */
390 0, /* @tp_descr_set@ */
391 0, /* @tp_dictoffset@ */
393 PyType_GenericAlloc, /* @tp_alloc@ */
394 fginfo_pynew, /* @tp_new@ */
399 static PyTypeObject bindhinfo_pytype_skel = {
400 PyObject_HEAD_INIT(0) 0, /* Header */
401 "BinDHInfo", /* @tp_name@ */
402 sizeof(fginfo_pyobj), /* @tp_basicsize@ */
403 0, /* @tp_itemsize@ */
405 fginfo_pydealloc, /* @tp_dealloc@ */
407 0, /* @tp_getattr@ */
408 0, /* @tp_setattr@ */
409 0, /* @tp_compare@ */
411 0, /* @tp_as_number@ */
412 0, /* @tp_as_sequence@ */
413 0, /* @tp_as_mapping@ */
417 0, /* @tp_getattro@ */
418 0, /* @tp_setattro@ */
419 0, /* @tp_as_buffer@ */
420 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
424 "Binary-field Diffie-Hellman group information.",
426 0, /* @tp_traverse@ */
428 0, /* @tp_richcompare@ */
429 0, /* @tp_weaklistoffset@ */
431 0, /* @tp_iternext@ */
432 0, /* @tp_methods@ */
433 0, /* @tp_members@ */
434 bindhinfo_pygetset, /* @tp_getset@ */
437 0, /* @tp_descr_get@ */
438 0, /* @tp_descr_set@ */
439 0, /* @tp_dictoffset@ */
441 PyType_GenericAlloc, /* @tp_alloc@ */
442 fginfo_pynew, /* @tp_new@ */
447 /*----- General utilities -------------------------------------------------*/
449 PyTypeObject *ge_pytype, *group_pytype;
450 PyTypeObject *primegroup_pytype, *bingroup_pytype, *ecgroup_pytype;
452 group *group_copy(group *g)
454 if (strcmp(G_NAME(g), "prime") == 0) {
455 gctx_prime *gc = (gctx_prime *)g;
457 gp.g = G_TOINT(g, MP_NEW, g->g);
460 g = group_prime(&gp);
462 } else if (strcmp(G_NAME(g), "bin") == 0) {
463 gctx_bin *gc = (gctx_bin *)g;
465 gb.g = G_TOINT(g, MP_NEW, g->g);
468 g = group_binary(&gb);
470 } else if (strcmp(G_NAME(g), "ec") == 0) {
471 gctx_ec *gc = (gctx_ec *)g;
473 if ((ei.c = eccurve_copy(gc->ei.c)) == 0)
476 EC_COPY(&ei.g, &gc->ei.g);
477 ei.r = MP_COPY(gc->ei.r);
478 ei.h = MP_COPY(gc->ei.h);
485 PyObject *ge_pywrap(PyObject *gobj, ge *x)
487 ge_pyobj *z = PyObject_New(ge_pyobj, (PyTypeObject *)gobj);
489 z->g = GROUP_G(gobj);
491 return ((PyObject *)z);
494 static PyObject *ge_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
496 char *kwlist[] = { "x", 0 };
505 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O:new", kwlist, &x)) goto end;
507 if (ECPT_PYCHECK(x)) {
509 if (G_FROMEC(g, xx, &p))
510 TYERR("can't convert from elliptic curve point");
512 } else if ((y = tomp(x)) != 0) {
513 if (G_FROMINT(g, xx, y))
514 TYERR("can't convert from integer");
516 } else if (PyString_Check(x)) {
517 sc.buf = PyString_AS_STRING(x);
518 sc.lim = sc.buf + PyString_GET_SIZE(x);
519 if (G_READ(g, xx, &mptext_stringops, &sc) || sc.buf < sc.lim)
520 SYNERR("malformed group element string");
522 TYERR("can't convert to group element");
523 return (ge_pywrap((PyObject *)ty, xx));
527 if (xx) G_DESTROY(g, xx);
531 static PyObject *group_dopywrap(PyTypeObject *ty, group *g)
533 group_pyobj *gobj = newtype(ty, 0, g->ops->name);
535 gobj->ty.ht_type.tp_basicsize = sizeof(ge_pyobj);
536 gobj->ty.ht_type.tp_base = ge_pytype;
537 Py_INCREF(group_pytype);
538 gobj->ty.ht_type.tp_flags = (Py_TPFLAGS_DEFAULT |
539 Py_TPFLAGS_BASETYPE |
540 Py_TPFLAGS_CHECKTYPES |
541 Py_TPFLAGS_HEAPTYPE);
542 gobj->ty.ht_type.tp_alloc = PyType_GenericAlloc;
543 gobj->ty.ht_type.tp_free = 0;
544 gobj->ty.ht_type.tp_new = ge_pynew;
545 PyType_Ready(&gobj->ty.ht_type);
546 return ((PyObject *)gobj);
549 PyObject *group_pywrap(group *g)
553 if (strcmp(G_NAME(g), "prime") == 0) ty = primegroup_pytype;
554 else if (strcmp(G_NAME(g), "bin") == 0) ty = bingroup_pytype;
555 else if (strcmp(G_NAME(g), "ec") == 0) ty = ecgroup_pytype;
557 return (group_dopywrap(ty, g));
560 /*----- Group elements ----------------------------------------------------*/
562 #define BINOP(name) \
563 static PyObject *ge_py##name(PyObject *x, PyObject *y) \
567 if (!GE_PYCHECK(x) || !GE_PYCHECK(y) || \
568 (GE_G(x) != GE_G(y) && !group_samep(GE_G(x), GE_G(y)))) \
572 g->ops->name(g, z, GE_X(x), GE_X(y)); \
573 return (ge_pywrap(GE_GOBJ(x), z)); \
580 static PyObject *gemeth_##name(PyObject *me, PyObject *arg) \
584 if (!PyArg_ParseTuple(arg, ":" #name)) return (0); \
587 g->ops->name(g, z, GE_X(me)); \
588 return (ge_pywrap(GE_GOBJ(me), z)); \
594 static PyObject *ge_pyexp(PyObject *x, PyObject *n, PyObject *m)
599 if (m != Py_None || !GE_PYCHECK(x) || (nn = getmp(n)) == 0)
601 z = G_CREATE(GE_G(x));
602 G_EXP(GE_G(x), z, GE_X(x), nn);
604 return (ge_pywrap(GE_GOBJ(x), z));
607 static void ge_pydealloc(PyObject *me)
609 G_DESTROY(GE_G(me), GE_X(me));
610 Py_DECREF(GE_GOBJ(me));
614 static void group_pydealloc(PyObject *me)
616 G_DESTROYGROUP(GROUP_G(me));
617 PyType_Type.tp_dealloc(me);
620 static PyObject *gmexp_id(PyObject *me)
622 group *g = GROUP_G(me); ge *x = G_CREATE(g);
623 G_COPY(g, x, g->i); return (ge_pywrap(me, x));
626 static int gmexp_fill(void *pp, PyObject *me, PyObject *x, PyObject *m)
628 group_expfactor *f = pp;
630 if (!GE_PYCHECK(x) || GE_G(x) != GROUP_G(me) || (f->exp = getmp(m)) == 0)
636 static PyObject *ge_pyrichcompare(PyObject *x, PyObject *y, int op)
641 if (!GE_PYCHECK(x) || !GE_PYCHECK(y) ||
642 (GE_G(x) != GE_G(y) && !group_samep(GE_G(x), GE_G(y))))
645 case Py_EQ: b = G_EQ(GE_G(x), GE_X(x), GE_X(y)); break;
646 case Py_NE: b = !G_EQ(GE_G(x), GE_X(x), GE_X(y)); break;
647 default: TYERR("group elements are unordered");
654 static PyObject *gemeth_check(PyObject *me, PyObject *arg)
656 if (!PyArg_ParseTuple(arg, ":check")) goto end;
657 if (group_check(GE_G(me), GE_X(me))) VALERR("bad group element");
663 static int ge_pynonzerop(PyObject *x)
664 { return (!G_IDENTP(GE_G(x), GE_X(x))); }
666 static PyObject *ge_pystr(PyObject *me)
671 group_writedstr(GE_G(me), GE_X(me), &d);
672 rc = PyString_FromStringAndSize(d.buf, d.len);
677 static PyObject *ge_pylong(PyObject *me)
682 if ((x = G_TOINT(GE_G(me), MP_NEW, GE_X(me))) == 0)
683 TYERR("can't convert to integer");
690 static PyObject *ge_pyint(PyObject *me)
696 if ((x = G_TOINT(GE_G(me), MP_NEW, GE_X(me))) == 0)
697 TYERR("can't convert to integer");
698 if (mp_tolong_checked(x, &l)) goto end;
699 rc = PyInt_FromLong(l);
705 static PyObject *gemeth_toint(PyObject *me, PyObject *arg)
709 if (!PyArg_ParseTuple(arg, ":toint")) goto end;
710 if ((x = G_TOINT(GE_G(me), MP_NEW, GE_X(me))) == 0)
711 TYERR("can't convert to integer");
712 return (mp_pywrap(x));
717 static PyObject *gemeth_toec(PyObject *me, PyObject *arg, PyObject *kw)
719 char *kwlist[] = { "curve", 0 };
720 PyTypeObject *cty = ecpt_pytype;
723 if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O:toec", kwlist,
725 if (!PyType_Check(cty) || !PyType_IsSubtype(cty, ecpt_pytype))
726 TYERR("want subtype of catacomb.ECPt");
727 if (G_TOEC(GE_G(me), &p, GE_X(me)))
728 TYERR("can't convert to ec point");
729 return (ecpt_pywrapout(cty, &p));
734 static PyObject *gemeth_tobuf(PyObject *me, PyObject *arg)
740 if (!PyArg_ParseTuple(arg, ":tobuf")) return (0);
741 n = GE_G(me)->noctets + 4;
742 rc = bytestring_pywrap(0, n);
743 buf_init(&b, PyString_AS_STRING(rc), n);
744 G_TOBUF(GE_G(me), &b, GE_X(me));
746 _PyString_Resize(&rc, BLEN(&b));
750 static PyObject *gemeth_toraw(PyObject *me, PyObject *arg)
756 if (!PyArg_ParseTuple(arg, ":toraw")) return (0);
757 n = GE_G(me)->noctets;
758 rc = bytestring_pywrap(0, n);
759 buf_init(&b, PyString_AS_STRING(rc), n);
760 G_TORAW(GE_G(me), &b, GE_X(me));
762 _PyString_Resize(&rc, BLEN(&b));
766 static PyObject *gmexp_exp(PyObject *me, void *pp, int n)
768 ge *z = G_CREATE(GROUP_G(me));
769 G_MEXP(GROUP_G(me), z, pp, n);
770 return (ge_pywrap(me, z));
773 static void gmexp_drop(void *pp)
775 group_expfactor *f = pp;
779 static PyObject *gmeth_mexp(PyObject *me, PyObject *arg)
781 return (mexp_common(me, arg, sizeof(group_expfactor),
782 gmexp_id, gmexp_fill, gmexp_exp, gmexp_drop));
785 static PyObject *gmeth_checkgroup(PyObject *me, PyObject *arg, PyObject *kw)
787 char *kwlist[] = { "rng", 0 };
788 grand *r = &rand_global;
791 if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:checkgroup", kwlist,
794 if ((p = G_CHECK(GROUP_G(me), r)) != 0)
801 static PyObject *group_pyrichcompare(PyObject *x, PyObject *y, int op)
803 int b = group_samep(GROUP_G(x), GROUP_G(y));
807 default: TYERR("can't order groups");
814 static PyObject *meth__GE_frombuf(PyObject *me, PyObject *arg)
822 if (!PyArg_ParseTuple(arg, "Os#:frombuf", &me, &p, &n))
827 if (G_FROMBUF(g, &b, x))
828 VALERR("invalid data");
829 return (Py_BuildValue("(NN)", ge_pywrap(me, x), bytestring_pywrapbuf(&b)));
831 if (x) G_DESTROY(g, x);
835 static PyObject *meth__GE_fromraw(PyObject *me, PyObject *arg)
843 if (!PyArg_ParseTuple(arg, "Os#:fromraw", &me, &p, &n))
848 if (G_FROMRAW(g, &b, x))
849 VALERR("invalid data");
850 return (Py_BuildValue("(NN)", ge_pywrap(me, x), bytestring_pywrapbuf(&b)));
852 if (x) G_DESTROY(g, x);
856 static PyObject *meth__GE_fromstring(PyObject *me, PyObject *arg)
864 if (!PyArg_ParseTuple(arg, "Os#:fromstring", &me, &p, &n))
870 if (G_READ(g, x, &mptext_stringops, &sc))
871 SYNERR("bad group element string");
872 return (Py_BuildValue("(Ns#)", ge_pywrap(me, x),
873 sc.buf, (int)(sc.lim - sc.buf)));
875 if (x) G_DESTROY(g, x);
879 static PyObject *meth__Group_parse(PyObject *me, PyObject *arg)
885 if (!PyArg_ParseTuple(arg, "Os:parse", &me, &p))
889 if ((g = group_parse(&qd)) == 0)
891 return (group_pywrap(g));
896 static PyObject *geget_group(PyObject *me, void *hunoz)
897 { RETURN_OBJ(GE_GOBJ(me)); }
899 static PyObject *gget_nbits(PyObject *me, void *hunoz)
900 { return (PyInt_FromLong(GROUP_G(me)->nbits)); }
902 static PyObject *gget_noctets(PyObject *me, void *hunoz)
903 { return (PyInt_FromLong(GROUP_G(me)->noctets)); }
905 static PyObject *gget_i(PyObject *me, void *hunoz)
907 group *g = GROUP_G(me); ge *x = G_CREATE(g);
908 G_COPY(g, x, g->i); return (ge_pywrap(me, x));
911 static PyObject *gget_g(PyObject *me, void *hunoz)
913 group *g = GROUP_G(me); ge *x = G_CREATE(g);
914 G_COPY(g, x, g->g); return (ge_pywrap(me, x));
917 static long ge_pyhash(PyObject *me)
920 size_t sz = GE_G(me)->noctets + 4;
921 uint32 h = 0xf672c776 + GE_G(me)->ops->ty;
922 octet *p = xmalloc(sz);
924 G_TOBUF(GE_G(me), &b, GE_X(me));
926 h = unihash_hash(&unihash_global, h, BBASE(&b), BLEN(&b));
928 return (h % LONG_MAX);
931 static PyObject *gget_r(PyObject *me, void *hunoz)
932 { return (mp_pywrap(MP_COPY(GROUP_G(me)->r))); }
934 static PyObject *gget_h(PyObject *me, void *hunoz)
935 { return (mp_pywrap(MP_COPY(GROUP_G(me)->h))); }
937 static PyGetSetDef ge_pygetset[] = {
938 #define GETSETNAME(op, name) ge##op##_##name
939 GET (group, "X.group -> group containing X")
944 static PyMethodDef ge_pymethods[] = {
945 #define METHNAME(name) gemeth_##name
946 METH (inv, "X.inv() -> inverse element of X")
947 METH (sqr, "X.sqr() -> X^2 = X * X")
948 METH (check, "X.check() -> check X really belongs to its group")
949 METH (toint, "X.toint() -> X converted to an integer")
951 X.toec(curve = ecpt) -> X converted to elliptic curve point")
952 METH (tobuf, "X.tobuf() -> X in buffer representation")
953 METH (toraw, "X.toraw() -> X in raw representation")
958 static PyNumberMethods ge_pynumber = {
960 0, /* @nb_subtract@ */
961 ge_pymul, /* @nb_multiply@ */
962 ge_pydiv, /* @nb_divide@ */
963 0, /* @nb_remainder@ */
965 ge_pyexp, /* @nb_power@ */
966 0, /* @nb_negative@ */
967 0, /* @nb_positive@ */
968 0, /* @nb_absolute@ */
969 ge_pynonzerop, /* @nb_nonzero@ */
977 ge_pyint, /* @nb_int@ */
978 ge_pylong, /* @nb_long@ */
979 0 /* meaningless */, /* @nb_float@ */
983 0, /* @nb_inplace_add@ */
984 0, /* @nb_inplace_subtract@ */
985 0, /* @nb_inplace_multiply@ */
986 0, /* @nb_inplace_divide@ */
987 0, /* @nb_inplace_remainder@ */
988 0, /* @nb_inplace_power@ */
989 0, /* @nb_inplace_lshift@ */
990 0, /* @nb_inplace_rshift@ */
991 0, /* @nb_inplace_and@ */
992 0, /* @nb_inplace_xor@ */
993 0, /* @nb_inplace_or@ */
995 0, /* @nb_floor_divide@ */
996 ge_pydiv, /* @nb_true_divide@ */
997 0, /* @nb_inplace_floor_divide@ */
998 0, /* @nb_inplace_true_divide@ */
1001 static PyTypeObject ge_pytype_skel = {
1002 PyObject_HEAD_INIT(0) 0, /* Header */
1003 "GE", /* @tp_name@ */
1004 sizeof(ge_pyobj), /* @tp_basicsize@ */
1005 0, /* @tp_itemsize@ */
1007 ge_pydealloc, /* @tp_dealloc@ */
1009 0, /* @tp_getattr@ */
1010 0, /* @tp_setattr@ */
1011 0, /* @tp_compare@ */
1013 &ge_pynumber, /* @tp_as_number@ */
1014 0, /* @tp_as_sequence@ */
1015 0, /* @tp_as_mapping@ */
1016 ge_pyhash, /* @tp_hash@ */
1018 ge_pystr, /* @tp_str@ */
1019 0, /* @tp_getattro@ */
1020 0, /* @tp_setattro@ */
1021 0, /* @tp_as_buffer@ */
1022 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
1023 Py_TPFLAGS_CHECKTYPES |
1024 Py_TPFLAGS_BASETYPE,
1027 "Group elements, abstract base class.",
1029 0, /* @tp_traverse@ */
1031 ge_pyrichcompare, /* @tp_richcompare@ */
1032 0, /* @tp_weaklistoffset@ */
1034 0, /* @tp_iternext@ */
1035 ge_pymethods, /* @tp_methods@ */
1036 0, /* @tp_members@ */
1037 ge_pygetset, /* @tp_getset@ */
1040 0, /* @tp_descr_get@ */
1041 0, /* @tp_descr_set@ */
1042 0, /* @tp_dictoffset@ */
1044 PyType_GenericAlloc, /* @tp_alloc@ */
1045 abstract_pynew, /* @tp_new@ */
1050 static PyGetSetDef group_pygetset[] = {
1051 #define GETSETNAME(op, name) g##op##_##name
1052 GET (noctets, "G.noctets -> size in octets of element")
1053 GET (nbits, "G.nbits -> size in bits of element")
1054 GET (i, "G.i -> group identity")
1055 GET (g, "G.g -> group generator")
1056 GET (r, "G.r -> group order")
1057 GET (h, "G.h -> group cofactor")
1062 static PyMethodDef group_pymethods[] = {
1063 #define METHNAME(name) gmeth_##name
1065 G.mexp([(X0, N0), (X1, N1), ...]) -> X0^N0 X1^N1 ...")
1066 KWMETH(checkgroup, "G.checkgroup(rand = random): check group is good")
1071 static PyTypeObject group_pytype_skel = {
1072 PyObject_HEAD_INIT(0) 0, /* Header */
1073 "Group", /* @tp_name@ */
1074 sizeof(group_pyobj), /* @tp_basicsize@ */
1075 0, /* @tp_itemsize@ */
1077 group_pydealloc, /* @tp_dealloc@ */
1079 0, /* @tp_getattr@ */
1080 0, /* @tp_setattr@ */
1081 0, /* @tp_compare@ */
1083 0, /* @tp_as_number@ */
1084 0, /* @tp_as_sequence@ */
1085 0, /* @tp_as_mapping@ */
1089 0, /* @tp_getattro@ */
1090 0, /* @tp_setattro@ */
1091 0, /* @tp_as_buffer@ */
1092 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
1093 Py_TPFLAGS_BASETYPE,
1096 "Abstract base class for groups.",
1098 0, /* @tp_traverse@ */
1100 group_pyrichcompare, /* @tp_richcompare@ */
1101 0, /* @tp_weaklistoffset@ */
1103 0, /* @tp_iternext@ */
1104 group_pymethods, /* @tp_methods@ */
1105 0, /* @tp_members@ */
1106 group_pygetset, /* @tp_getset@ */
1109 0, /* @tp_descr_get@ */
1110 0, /* @tp_descr_set@ */
1111 0, /* @tp_dictoffset@ */
1113 PyType_GenericAlloc, /* @tp_alloc@ */
1114 abstract_pynew, /* @tp_new@ */
1119 static PyObject *pgget_info(PyObject *me, void *hunoz)
1122 gctx_prime *gg = (gctx_prime *)GROUP_G(me);
1123 dp.p = MP_COPY(gg->mm.m);
1124 dp.q = MP_COPY(gg->g.r);
1125 dp.g = mpmont_reduce(&gg->mm, MP_NEW, gg->gen);
1126 return (fginfo_pywrap(&dp, dhinfo_pytype));
1129 static PyGetSetDef primegroup_pygetset[] = {
1130 #define GETSETNAME(op, name) pg##op##_##name
1131 GET (info, "G.info -> information about the group")
1136 static PyObject *primegroup_pynew(PyTypeObject *ty,
1137 PyObject *arg, PyObject *kw)
1140 char *kwlist[] = { "info", 0 };
1142 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O!:new", kwlist,
1145 return (group_dopywrap(ty, group_prime(FGINFO_DP(i))));
1148 static PyTypeObject primegroup_pytype_skel = {
1149 PyObject_HEAD_INIT(0) 0, /* Header */
1150 "PrimeGroup", /* @tp_name@ */
1151 sizeof(group_pyobj), /* @tp_basicsize@ */
1152 0, /* @tp_itemsize@ */
1154 group_pydealloc, /* @tp_dealloc@ */
1156 0, /* @tp_getattr@ */
1157 0, /* @tp_setattr@ */
1158 0, /* @tp_compare@ */
1160 0, /* @tp_as_number@ */
1161 0, /* @tp_as_sequence@ */
1162 0, /* @tp_as_mapping@ */
1166 0, /* @tp_getattro@ */
1167 0, /* @tp_setattro@ */
1168 0, /* @tp_as_buffer@ */
1169 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
1170 Py_TPFLAGS_BASETYPE,
1173 "Subgroups of prime fields.",
1175 0, /* @tp_traverse@ */
1177 0, /* @tp_richcompare@ */
1178 0, /* @tp_weaklistoffset@ */
1180 0, /* @tp_iternext@ */
1181 0, /* @tp_methods@ */
1182 0, /* @tp_members@ */
1183 primegroup_pygetset, /* @tp_getset@ */
1186 0, /* @tp_descr_get@ */
1187 0, /* @tp_descr_set@ */
1188 0, /* @tp_dictoffset@ */
1190 PyType_GenericAlloc, /* @tp_alloc@ */
1191 primegroup_pynew, /* @tp_new@ */
1196 static PyObject *bgget_info(PyObject *me, void *hunoz)
1199 gctx_bin *gg = (gctx_bin *)GROUP_G(me);
1200 dp.p = MP_COPY(gg->r.p);
1201 dp.q = MP_COPY(gg->g.r);
1202 dp.g = MP_COPY(gg->gen);
1203 return (fginfo_pywrap(&dp, bindhinfo_pytype));
1206 static PyGetSetDef bingroup_pygetset[] = {
1207 #define GETSETNAME(op, name) bg##op##_##name
1208 GET (info, "G.info -> information about the group")
1213 static PyObject *bingroup_pynew(PyTypeObject *ty,
1214 PyObject *arg, PyObject *kw)
1217 char *kwlist[] = { "info", 0 };
1219 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O!:new", kwlist,
1220 bindhinfo_pytype, &i))
1222 return (group_dopywrap(ty, group_binary(FGINFO_DP(i))));
1225 static PyTypeObject bingroup_pytype_skel = {
1226 PyObject_HEAD_INIT(0) 0, /* Header */
1227 "BinGroup", /* @tp_name@ */
1228 sizeof(group_pyobj), /* @tp_basicsize@ */
1229 0, /* @tp_itemsize@ */
1231 group_pydealloc, /* @tp_dealloc@ */
1233 0, /* @tp_getattr@ */
1234 0, /* @tp_setattr@ */
1235 0, /* @tp_compare@ */
1237 0, /* @tp_as_number@ */
1238 0, /* @tp_as_sequence@ */
1239 0, /* @tp_as_mapping@ */
1243 0, /* @tp_getattro@ */
1244 0, /* @tp_setattro@ */
1245 0, /* @tp_as_buffer@ */
1246 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
1247 Py_TPFLAGS_BASETYPE,
1250 "Subgroups of binary fields.",
1252 0, /* @tp_traverse@ */
1254 0, /* @tp_richcompare@ */
1255 0, /* @tp_weaklistoffset@ */
1257 0, /* @tp_iternext@ */
1258 0, /* @tp_methods@ */
1259 0, /* @tp_members@ */
1260 bingroup_pygetset, /* @tp_getset@ */
1263 0, /* @tp_descr_get@ */
1264 0, /* @tp_descr_set@ */
1265 0, /* @tp_dictoffset@ */
1267 PyType_GenericAlloc, /* @tp_alloc@ */
1268 bingroup_pynew, /* @tp_new@ */
1273 static PyObject *egget_info(PyObject *me, void *hunoz)
1276 gctx_ec *gg = (gctx_ec *)GROUP_G(me);
1278 ecinfo_copy(&ei, &gg->ei);
1279 return (ecinfo_pywrap(&ei));
1282 static PyGetSetDef ecgroup_pygetset[] = {
1283 #define GETSETNAME(op, name) eg##op##_##name
1284 GET (info, "G.info -> information about the group")
1289 static PyObject *ecgroup_pynew(PyTypeObject *ty,
1290 PyObject *arg, PyObject *kw)
1294 char *kwlist[] = { "info", 0 };
1296 if (!PyArg_ParseTupleAndKeywords(arg, kw, "O!:new", kwlist,
1299 ecinfo_copy(&ei, ECINFO_EI(i));
1300 return (group_dopywrap(ty, group_ec(&ei)));
1303 static PyTypeObject ecgroup_pytype_skel = {
1304 PyObject_HEAD_INIT(0) 0, /* Header */
1305 "ECGroup", /* @tp_name@ */
1306 sizeof(group_pyobj), /* @tp_basicsize@ */
1307 0, /* @tp_itemsize@ */
1309 group_pydealloc, /* @tp_dealloc@ */
1311 0, /* @tp_getattr@ */
1312 0, /* @tp_setattr@ */
1313 0, /* @tp_compare@ */
1315 0, /* @tp_as_number@ */
1316 0, /* @tp_as_sequence@ */
1317 0, /* @tp_as_mapping@ */
1321 0, /* @tp_getattro@ */
1322 0, /* @tp_setattro@ */
1323 0, /* @tp_as_buffer@ */
1324 Py_TPFLAGS_DEFAULT | /* @tp_flags@ */
1325 Py_TPFLAGS_BASETYPE,
1328 "Elliptic curve groups.",
1330 0, /* @tp_traverse@ */
1332 0, /* @tp_richcompare@ */
1333 0, /* @tp_weaklistoffset@ */
1335 0, /* @tp_iternext@ */
1336 0, /* @tp_methods@ */
1337 0, /* @tp_members@ */
1338 ecgroup_pygetset, /* @tp_getset@ */
1341 0, /* @tp_descr_get@ */
1342 0, /* @tp_descr_set@ */
1343 0, /* @tp_dictoffset@ */
1345 PyType_GenericAlloc, /* @tp_alloc@ */
1346 ecgroup_pynew, /* @tp_new@ */
1351 /*----- Global stuff ------------------------------------------------------*/
1353 static PyMethodDef methods[] = {
1354 #define METHNAME(name) meth_##name
1355 METH (_GE_frombuf, "frombuf(BUF) -> X, REST")
1356 METH (_GE_fromraw, "fromraw(BUF) -> X, REST")
1357 METH (_GE_fromstring, "fromstring(STR) -> X, REST")
1358 METH (_Group_parse, "parse(STR) -> G, REST")
1359 METH (_DHInfo_parse, "parse(STR) -> D, REST")
1360 METH (_BinDHInfo_parse, "parse(STR) -> D, REST")
1361 METH (_DHInfo__groupn, 0)
1362 METH (_BinDHInfo__groupn, 0)
1363 KWMETH(_DHInfo_generate, "\
1364 generate(PBITS, [qbits = 0, event = pgen_nullev,\n\
1365 rng = rand, nsteps = 0]) -> D")
1366 KWMETH(_DHInfo_genlimlee, "\
1367 genlimlee(PBITS, QBITS, [event = pgen_nullev, ievent = pgen_nullev,\n\
1368 rng = rand, nsteps = 0, subgroupp = True]) -> (D, [Q, ...])")
1369 KWMETH(_DHInfo_gendsa, "\
1370 gendsa(PBITS, QBITS, SEED, [event = pgen_nullev, nsteps = 0])\n\
1371 -> (D, SEED, COUNT)")
1372 KWMETH(_DHInfo_genkcdsa, "\
1373 gendsa(PBITS, QBITS, [event = pgen_nullev, rng = rand, nsteps = 0])\n\
1379 void group_pyinit(void)
1381 INITTYPE(fginfo, root);
1382 INITTYPE(dhinfo, fginfo);
1383 INITTYPE(bindhinfo, dhinfo);
1385 INITTYPE(group, type);
1386 INITTYPE(primegroup, group);
1387 INITTYPE(bingroup, group);
1388 INITTYPE(ecgroup, group);
1389 addmethods(methods);
1392 void group_pyinsert(PyObject *mod)
1394 INSERT("FGInfo", fginfo_pytype);
1395 INSERT("DHInfo", dhinfo_pytype);
1396 INSERT("BinDHInfo", bindhinfo_pytype);
1397 INSERT("GE", ge_pytype);
1398 INSERT("Group", group_pytype);
1399 INSERT("PrimeGroup", primegroup_pytype);
1400 INSERT("BinGroup", bingroup_pytype);
1401 INSERT("ECGroup", ecgroup_pytype);
1402 INSERT("_pgroups", namedgroups(ptab, &npgroups));
1403 INSERT("_bingroups", namedgroups(bintab, &nbingroups));
1406 /*----- That's all, folks -------------------------------------------------*/