algorithms.c: Add support for Poly1305.
[pyke] / catacomb-python.h
CommitLineData
b6a86d2e 1/* -*-c-*-
2 *
b6a86d2e 3 * Definitions for Catacomb bindings
4 *
5 * (c) 2004 Straylight/Edgeware
6 */
7
0b1eafbf 8/*----- Licensing notice --------------------------------------------------*
b6a86d2e 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.
0b1eafbf 16 *
b6a86d2e 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.
0b1eafbf 21 *
b6a86d2e 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.
25 */
26
27#ifndef CATACOMB_PYTHON_H
28#define CATACOMB_PYTHON_H
29
30#ifdef __cplusplus
31 extern "C" {
32#endif
33
34/*----- Header files ------------------------------------------------------*/
35
36#include <Python.h>
37#include <longintrepr.h>
38#include <structmember.h>
39
40#include <mLib/darray.h>
41#include <mLib/dstr.h>
42#include <mLib/macros.h>
73a712fa 43#include <mLib/quis.h>
b06387d2 44#include <mLib/unihash.h>
b6a86d2e 45
46#include <catacomb/buf.h>
47
48#include <catacomb/grand.h>
49#include <catacomb/rand.h>
50#include <catacomb/noise.h>
51#include <catacomb/bbs.h>
52#include <catacomb/mprand.h>
53#include <catacomb/lcrand.h>
54#include <catacomb/fibrand.h>
55#include <catacomb/dsarand.h>
56#include <catacomb/sslprf.h>
57#include <catacomb/tlsprf.h>
62058916 58#include <catacomb/blkc.h>
b6a86d2e 59
60#include <catacomb/gcipher.h>
61#include <catacomb/ghash.h>
62#include <catacomb/gmac.h>
63#include <catacomb/md5.h>
64#include <catacomb/md5-hmac.h>
2ad160b1 65#include <catacomb/poly1305.h>
b6a86d2e 66#include <catacomb/sha.h>
67#include <catacomb/sha-mgf.h>
68#include <catacomb/sha-hmac.h>
69
70#include <catacomb/mp.h>
71#include <catacomb/mpint.h>
72#include <catacomb/mpmul.h>
73#include <catacomb/mpcrt.h>
74#include <catacomb/mpmont.h>
75#include <catacomb/mpbarrett.h>
76#include <catacomb/mpreduce.h>
9c034c56 77#include <catacomb/mp-fibonacci.h>
b6a86d2e 78
79#include <catacomb/pgen.h>
80#include <catacomb/pfilt.h>
81#include <catacomb/strongprime.h>
82#include <catacomb/limlee.h>
83#include <catacomb/dh.h>
84#include <catacomb/ptab.h>
85#include <catacomb/bintab.h>
86#include <catacomb/dsa.h>
87
88#include <catacomb/gf.h>
89#include <catacomb/gfreduce.h>
90#include <catacomb/gfn.h>
91
92#include <catacomb/field.h>
93#include <catacomb/field-guts.h>
94
95#include <catacomb/ec.h>
96#include <catacomb/ec-raw.h>
97#include <catacomb/ectab.h>
98
99#include <catacomb/group.h>
100#include <catacomb/group-guts.h>
101
102#include <catacomb/gdsa.h>
103#include <catacomb/gkcdsa.h>
104#include <catacomb/rsa.h>
105
106#include <catacomb/key.h>
107#include <catacomb/passphrase.h>
108#include <catacomb/pixie.h>
109
73a712fa 110#include <catacomb/share.h>
111#include <catacomb/gfshare.h>
112
b6a86d2e 113/*----- Utility macros ----------------------------------------------------*/
114
115#define RETURN_OBJ(obj) do { Py_INCREF(obj); return (obj); } while (0)
116#define RETURN_NONE RETURN_OBJ(Py_None)
117#define RETURN_NOTIMPL RETURN_OBJ(Py_NotImplemented)
118#define RETURN_TRUE RETURN_OBJ(Py_True)
119#define RETURN_FALSE RETURN_OBJ(Py_False)
120#define RETURN_ME RETURN_OBJ(me)
121
122#define EXCERR(exc, str) do { \
123 PyErr_SetString(exc, str); \
124 goto end; \
125} while (0)
126#define VALERR(str) EXCERR(PyExc_ValueError, str)
127#define TYERR(str) EXCERR(PyExc_TypeError, str)
128#define ZDIVERR(str) EXCERR(PyExc_ZeroDivisionError, str)
b6a86d2e 129#define SYSERR(str) EXCERR(PyExc_SystemError, str)
68ec53f3 130#define NIERR(str) EXCERR(PyExc_NotImplementedError, str)
73a712fa 131#define INDEXERR(idx) do { \
132 PyErr_SetObject(PyExc_KeyError, idx); \
133 goto end; \
134} while (0)
b6a86d2e 135#define OSERR(name) do { \
136 PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); \
137 goto end; \
138} while (0)
139#define PGENERR do { pgenerr(); goto end; } while (0)
140
141#define CONVFUNC(ty, cty, ext) \
142 int conv##ty(PyObject *o, void *p) \
143 { \
144 if (!PyObject_TypeCheck(o, ty##_pytype)) \
145 TYERR("wanted a " #ty); \
146 *(cty *)p = ext(o); \
147 return (1); \
148 end: \
149 return (0); \
150 }
151
d4a9e7e7
MW
152#if PY_VERSION_HEX < 0x02050000 /* Compatibility hack */
153# define ht_name name
154# define ht_type type
155#endif
156
b6a86d2e 157#define root_pytype 0
158#define type_pytype &PyType_Type
017d5f65 159#define INITTYPE_META(ty, base, meta) do { \
b6a86d2e 160 ty##_pytype_skel.tp_base = base##_pytype; \
017d5f65 161 ty##_pytype = inittype(&ty##_pytype_skel, meta##_pytype); \
b6a86d2e 162} while (0)
017d5f65 163#define INITTYPE(ty, base) INITTYPE_META(ty, base, type)
b6a86d2e 164
165#define INSERT(name, ob) do { \
166 PyObject *_o = (PyObject *)(ob); \
0b1eafbf 167 Py_INCREF(_o); \
b6a86d2e 168 PyModule_AddObject(mod, name, _o); \
169} while (0)
170
73a712fa 171#define INSEXC(name, var, base, meth) \
172 INSERT(name, var = mkexc(mod, base, name, meth))
173
b6a86d2e 174#define METH(func, doc) \
175 { #func, METHNAME(func), METH_VARARGS, doc },
176#define KWMETH(func, doc) \
177 { #func, (PyCFunction)METHNAME(func), \
178 METH_VARARGS | METH_KEYWORDS, doc },
179
180#define GET(func, doc) \
181 { #func, GETSETNAME(get, func), 0, doc },
182#define GETSET(func, doc) \
183 { #func, GETSETNAME(get, func), GETSETNAME(set, func), doc },
184
185#define MEMBER(name, ty, f, doc) \
186 { #name, ty, offsetof(MEMBERSTRUCT, name), f, doc },
187
73a712fa 188#define MODULES(_) \
dfe0a897 189 _(util) \
73a712fa 190 _(bytestring) _(buffer) \
191 _(rand) _(algorithms) _(pubkey) _(pgen) \
192 _(mp) _(field) _(ec) _(group) \
dfe0a897 193 _(passphrase) _(share) _(key)
b6a86d2e 194#define DOMODINIT(m) m##_pyinit();
195#define DOMODINSERT(m) m##_pyinsert(mod);
196#define INIT_MODULES do { MODULES(DOMODINIT) } while (0)
197#define INSERT_MODULES do { MODULES(DOMODINSERT) } while (0)
198
199#define DO(m) \
200 extern void m##_pyinit(void); \
201 extern void m##_pyinsert(PyObject *);
202MODULES(DO)
203#undef DO
204
ba45a729 205#define FREEOBJ(obj) \
206 (((PyObject *)(obj))->ob_type->tp_free((PyObject *)(obj)))
207
68ec53f3
MW
208#define GEN(func, base) \
209 static PyObject *func(void) \
210 { \
211 PyObject *d = PyDict_New(); \
212 PyObject *o; \
213 int i; \
214 \
215 for (i = 0; g##base##tab[i]; i++) { \
216 o = gc##base##_pywrap((/*unconst*/ gc##base *)g##base##tab[i]); \
217 PyDict_SetItemString(d, \
218 (/*unconst*/ char *)g##base##tab[i]->name, \
219 o); \
220 Py_DECREF(o); \
221 } \
222 return (d); \
223 }
224
225struct nameval { const char *name; unsigned long value; };
226extern void setconstants(PyObject *, const struct nameval *);
227
228extern PyObject *mexp_common(PyObject *, PyObject *, size_t,
229 PyObject *(*id)(PyObject *),
230 int (*fill)(void *, PyObject *,
231 PyObject *, PyObject *),
232 PyObject *(*exp)(PyObject *, void *, int),
233 void (*drop)(void *));
234
235extern int convulong(PyObject *, void *);
236#define DECL_CONVU_(n) extern int convu##n(PyObject *, void *);
237DOUINTSZ(DECL_CONVU_)
238extern int convmpw(PyObject *, void *);
239extern int convuint(PyObject *, void *);
1b6734b6 240extern int convk64(PyObject *, void *);
68ec53f3
MW
241extern int convszt(PyObject *, void *);
242extern int convbool(PyObject *, void *);
243extern PyObject *abstract_pynew(PyTypeObject *, PyObject *, PyObject *);
244extern PyObject *getbool(int);
1e082a86 245extern PyObject *getulong(unsigned long);
1b6734b6 246extern PyObject *getk64(kludge64);
68ec53f3
MW
247extern void *newtype(PyTypeObject *, const PyTypeObject *, const char *);
248
d2421f3c 249extern PyObject *mkexc(PyObject *, PyObject *, const char *, PyMethodDef *);
0156e402 250extern void typeready(PyTypeObject *);
017d5f65 251extern PyTypeObject *inittype(PyTypeObject *, PyTypeObject *);
68ec53f3
MW
252extern void addmethods(const PyMethodDef *);
253extern PyMethodDef *donemethods(void);
254
255/*----- Mapping methods ---------------------------------------------------*/
256
257#define GMAP_METH(func, doc) { #func, gmapmeth_##func, METH_VARARGS, doc },
258#define GMAP_KWMETH(func, doc) \
259 { #func, (PyCFunction)gmapmeth_##func, METH_VARARGS|METH_KEYWORDS, doc },
260#define GMAP_METHDECL(func, doc) \
261 extern PyObject *gmapmeth_##func(PyObject *, PyObject *);
262#define GMAP_KWMETHDECL(func, doc) \
263 extern PyObject *gmapmeth_##func(PyObject *, PyObject *, PyObject *);
264
2a509510 265#define GMAP_DOROMETHODS(METH, KWMETH) \
68ec53f3
MW
266 METH (has_key, "D.has_key(KEY) -> BOOL") \
267 METH (keys, "D.keys() -> LIST") \
268 METH (values, "D.values() -> LIST") \
269 METH (items, "D.items() -> LIST") \
270 METH (iterkeys, "D.iterkeys() -> ITER") \
271 METH (itervalues, "D.itervalues() -> ITER") \
0b1eafbf 272 METH (iteritems, "D.iteritems() -> ITER") \
68ec53f3 273 KWMETH(get, "D.get(KEY, [default = None]) -> VALUE") \
2a509510
MW
274
275#define GMAP_DOMETHODS(METH, KWMETH) \
276 GMAP_DOROMETHODS(METH, KWMETH) \
277 METH (clear, "D.clear()") \
68ec53f3
MW
278 KWMETH(setdefault, "D.setdefault(K, [default = None]) -> VALUE") \
279 KWMETH(pop, "D.pop(KEY, [default = <error>]) -> VALUE") \
280 METH (popitem, "D.popitem() -> (KEY, VALUE)") \
281 METH (update, "D.update(MAP)")
282
283GMAP_DOMETHODS(GMAP_METHDECL, GMAP_KWMETHDECL)
2a509510 284#define GMAP_ROMETHODS GMAP_DOROMETHODS(GMAP_METH, GMAP_KWMETH)
68ec53f3 285#define GMAP_METHODS GMAP_DOMETHODS(GMAP_METH, GMAP_KWMETH)
9d73ed80 286extern Py_ssize_t gmap_pysize(PyObject *);
68ec53f3
MW
287extern PySequenceMethods gmap_pysequence;
288extern PyMethodDef gmap_pymethods[];
289
b6a86d2e 290/*----- Bytestrings -------------------------------------------------------*/
291
292PyTypeObject *bytestring_pyobj;
293PyObject *bytestring_pywrap(const void *, size_t);
294PyObject *bytestring_pywrapbuf(buf *);
295
296/*----- Multiprecision arithmetic -----------------------------------------*/
297
298typedef struct mp_pyobj {
299 PyObject_HEAD
300 mp *x;
301} mp_pyobj;
302
303extern PyTypeObject *mp_pytype;
304extern PyTypeObject *gf_pytype;
305#define MP_X(o) (((mp_pyobj *)(o))->x)
306#define MP_PYCHECK(o) PyObject_TypeCheck((o), mp_pytype)
307#define GF_PYCHECK(o) PyObject_TypeCheck((o), gf_pytype)
308
8d57d6ea
MW
309extern mp *mp_frompylong(PyObject *);
310extern PyObject *mp_topylong(mp *);
b6a86d2e 311extern mp *tomp(PyObject *);
312extern mp *getmp(PyObject *);
313extern int convmp(PyObject *, void *);
314extern mp *getgf(PyObject *);
315extern int convgf(PyObject *, void *);
316extern PyObject *mp_pywrap(mp *);
317extern PyObject *gf_pywrap(mp *);
318extern mp *mp_frompyobject(PyObject *, int);
319extern PyObject *mp_topystring(mp *, int,
320 const char *, const char *, const char *);
321extern int mp_tolong_checked(mp *, long *);
322
323/*----- Abstract fields ---------------------------------------------------*/
324
325typedef struct field_pyobj {
f0526039 326 PyHeapTypeObject ty;
b6a86d2e 327 field *f;
328} field_pyobj;
329
330extern PyTypeObject *fe_pytype;
331#define FE_PYCHECK(o) PyObject_TypeCheck((o), fe_pytype)
332#define FE_F(o) (((fe_pyobj *)(o))->f)
333#define FE_FOBJ(o) ((PyObject *)(o)->ob_type)
334#define FE_X(o) (((fe_pyobj *)(o))->x)
335extern PyObject *fe_pywrap(PyObject *, mp *);
336extern mp *getfe(field *, PyObject *);
337
338typedef struct fe_pyobj {
339 PyObject_HEAD
340 field *f;
b6a86d2e 341 mp *x;
342} fe_pyobj;
0b1eafbf 343
b6a86d2e 344extern PyTypeObject *field_pytype;
345extern PyTypeObject *primefield_pytype;
346extern PyTypeObject *niceprimefield_pytype;
347extern PyTypeObject *binfield_pytype;
348extern PyTypeObject *binpolyfield_pytype;
349extern PyTypeObject *binnormfield_pytype;
350#define FIELD_PYCHECK(o) PyObject_TypeCheck((o), field_pytype)
351#define FIELD_F(o) (((field_pyobj *)(o))->f)
352extern PyObject *field_pywrap(field *);
353extern field *field_copy(field *);
354
355/*----- Elliptic curves ---------------------------------------------------*/
356
357typedef struct ecpt_pyobj {
358 PyObject_HEAD
359 ec_curve *c;
360 ec p;
361} ecpt_pyobj;
362
363extern PyTypeObject *ecpt_pytype, *ecptcurve_pytype;
364#define ECPT_PYCHECK(o) PyObject_TypeCheck((o), ecpt_pytype)
365#define ECPTCURVE_PYCHECK(o) PyObject_TypeCheck((o), ecptcurve_pytype)
366#define ECPT_C(o) (((ecpt_pyobj *)(o))->c)
367#define ECPT_COBJ(o) ((PyObject *)(o)->ob_type)
368#define ECPT_FOBJ(o) ECCURVE_FOBJ(ECPT_COBJ((o)))
369#define ECPT_P(o) (&((ecpt_pyobj *)(o))->p)
370extern PyObject *ecpt_pywrap(PyObject *, ec *);
371extern PyObject *ecpt_pywrapout(void *, ec *);
372extern int toecpt(ec_curve *, ec *, PyObject *);
373extern int getecpt(ec_curve *, ec *, PyObject *);
374extern void getecptout(ec *, PyObject *);
73a712fa 375extern int convecpt(PyObject *, void *);
b6a86d2e 376
377typedef struct eccurve_pyobj {
f0526039 378 PyHeapTypeObject ty;
b6a86d2e 379 ec_curve *c;
380 PyObject *fobj;
381} eccurve_pyobj;
382
383extern PyTypeObject *eccurve_pytype;
384extern PyTypeObject *ecprimecurve_pytype;
385extern PyTypeObject *ecprimeprojcurve_pytype;
386extern PyTypeObject *ecbincurve_pytype;
387extern PyTypeObject *ecbinprojcurve_pytype;
388#define ECCURVE_PYCHECK(o) PyObject_TypeCheck((o), eccurve_pytype)
389#define ECCURVE_C(o) (((eccurve_pyobj *)(o))->c)
390#define ECCURVE_FOBJ(o) (((eccurve_pyobj *)(o))->fobj)
391extern PyObject *eccurve_pywrap(PyObject *, ec_curve *);
392extern ec_curve *eccurve_copy(ec_curve *);
393
394typedef struct ecinfo_pyobj {
395 PyObject_HEAD
396 ec_info ei;
397 PyObject *cobj;
398} ecinfo_pyobj;
0b1eafbf 399
b6a86d2e 400extern PyTypeObject *ecinfo_pytype;
401#define ECINFO_PYCHECK(o) PyObject_TypeCheck((o), ecinfo_pytype)
402#define ECINFO_EI(o) (&((ecinfo_pyobj *)(o))->ei)
403#define ECINFO_COBJ(o) (((ecinfo_pyobj *)(o))->cobj)
404extern void ecinfo_copy(ec_info *, const ec_info *);
405extern PyObject *ecinfo_pywrap(ec_info *);
406
407/*----- Cyclic groups -----------------------------------------------------*/
408
409typedef struct fginfo_pyobj {
410 PyObject_HEAD
411 gprime_param dp;
412} fginfo_pyobj;
413
414PyTypeObject *fginfo_pytype, *dhinfo_pytype, *bindhinfo_pytype;
415#define FGINFO_DP(fg) (&((fginfo_pyobj *)(fg))->dp)
416PyObject *fginfo_pywrap(gprime_param *, PyTypeObject *);
417
418typedef struct ge_pyobj {
419 PyObject_HEAD
420 ge *x;
421 group *g;
422} ge_pyobj;
423
424extern PyTypeObject *ge_pytype;
425#define GE_PYCHECK(o) PyObject_TypeCheck((o), ge_pytype)
426#define GE_X(o) (((ge_pyobj *)(o))->x)
427#define GE_G(o) (((ge_pyobj *)(o))->g)
428#define GE_GOBJ(o) ((PyObject *)(group_pyobj *)(o)->ob_type)
429extern PyObject *ge_pywrap(PyObject *, ge *);
430
431typedef struct group_pyobj {
f0526039 432 PyHeapTypeObject ty;
b6a86d2e 433 group *g;
434} group_pyobj;
435
436extern PyTypeObject *group_pytype;
437extern PyTypeObject *primegroup_pytype, *bingroup_pytype, *ecgroup_pytype;
438#define GROUP_G(o) (((group_pyobj *)(o))->g)
439extern PyObject *group_pywrap(group *);
440extern group *group_copy(group *);
441
442/*----- Random number generators ------------------------------------------*/
443
444#define f_freeme 1u
445
446typedef struct grand_pyobj {
447 PyObject_HEAD
448 unsigned f;
449 grand *r;
450} grand_pyobj;
451
452extern PyTypeObject *grand_pytype, *truerand_pytype;
453extern PyTypeObject *lcrand_pytype,* fibrand_pytype;
454extern PyTypeObject *dsarand_pytype, *bbs_pytype;
455extern PyObject *rand_pyobj;
456#define GRAND_PYCHECK(o) PyObject_TypeCheck((o), grand_pytype)
457#define GRAND_F(o) (((grand_pyobj *)(o))->f)
458#define GRAND_R(o) (((grand_pyobj *)(o))->r)
459extern PyObject *grand_pywrap(grand *, unsigned);
460extern int convgrand(PyObject *, void *);
461
462/*----- Key sizes ---------------------------------------------------------*/
463
464typedef struct keysz_pyobj {
465 PyObject_HEAD
466 int dfl;
467} keysz_pyobj;
468
469typedef struct keyszrange_pyobj {
470 PyObject_HEAD
471 int dfl;
472 int min, max, mod;
473} keyszrange_pyobj;
474
475typedef struct keyszset_pyobj {
476 PyObject_HEAD
477 int dfl;
478 PyObject *set;
479} keyszset_pyobj;
480
481#define KEYSZ_PYCHECK(o) PyObject_TypeCheck((o), keysz_pytype)
482extern PyObject *keysz_pywrap(const octet *);
483
484/*----- Symmetric cryptography --------------------------------------------*/
485
486typedef struct gccipher_pyobj {
f0526039 487 PyHeapTypeObject ty;
b6a86d2e 488 gccipher *cc;
489} gccipher_pyobj;
490
491extern PyTypeObject *gccipher_pytype;
492#define GCCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gccipher_pytype)
493#define GCCIPHER_CC(o) (((gccipher_pyobj *)(o))->cc)
494#define GCCIPHER_F(o) (((gccipher_pyobj *)(o))->f)
495extern PyObject *gccipher_pywrap(gccipher *);
496extern int convgccipher(PyObject *, void *);
497extern int convgcipher(PyObject *, void *);
498
499typedef struct gcipher_pyobj {
500 PyObject_HEAD
501 unsigned f;
502 gcipher *c;
503} gcipher_pyobj;
504
505extern PyTypeObject *gcipher_pytype;
506#define GCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gcipher_pytype)
507#define GCIPHER_C(o) (((gcipher_pyobj *)(o))->c)
508#define GCIPHER_F(o) (((gcipher_pyobj *)(o))->f)
509extern PyObject *gcipher_pywrap(PyObject *, gcipher *, unsigned);
510extern int convgcipher(PyObject *, void *);
511
512typedef struct gchash_pyobj {
f0526039 513 PyHeapTypeObject ty;
b6a86d2e 514 gchash *ch;
515} gchash_pyobj;
516
517extern PyTypeObject *gchash_pytype;
518#define GCHASH_PYCHECK(o) PyObject_TypeCheck((o), gchash_pytype)
519#define GCHASH_CH(o) (((gchash_pyobj *)(o))->ch)
520#define GCHASH_F(o) (((gchash_pyobj *)(o))->f)
521extern PyObject *gchash_pywrap(gchash *);
522extern int convgchash(PyObject *, void *);
523
524typedef struct ghash_pyobj {
525 PyObject_HEAD
526 unsigned f;
527 ghash *h;
528} ghash_pyobj;
529
530extern PyTypeObject *ghash_pytype, *gmhash_pytype;
531extern PyObject *sha_pyobj, *has160_pyobj;
532#define GHASH_PYCHECK(o) PyObject_TypeCheck((o), ghash_pytype)
533#define GHASH_H(o) (((ghash_pyobj *)(o))->h)
534#define GHASH_F(o) (((ghash_pyobj *)(o))->f)
535extern PyObject *ghash_pywrap(PyObject *, ghash *, unsigned);
536extern int convghash(PyObject *, void *);
537extern int convgmhash(PyObject *, void *);
538
539typedef struct gcmac_pyobj {
f0526039 540 PyHeapTypeObject ty;
b6a86d2e 541 gcmac *cm;
542} gcmac_pyobj;
543
544extern PyTypeObject *gcmac_pytype;
545#define GCMAC_PYCHECK(o) PyObject_TypeCheck((o), gcmac_pytype)
546#define GCMAC_CM(o) (((gcmac_pyobj *)(o))->cm)
547#define GCMAC_F(o) (((gcmac_pyobj *)(o))->f)
548extern PyObject *gcmac_pywrap(gcmac *);
549extern int convgcmac(PyObject *, void *);
550
551typedef struct gmac_pyobj {
f0526039 552 PyHeapTypeObject ty;
b6a86d2e 553 unsigned f;
554 gmac *m;
b6a86d2e 555} gmac_pyobj;
556
557extern PyTypeObject *gmac_pytype;
558#define GMAC_PYCHECK(o) PyObject_TypeCheck((o), gmac_pytype)
559#define GMAC_M(o) (((gmac_pyobj *)(o))->m)
b6a86d2e 560#define GMAC_F(o) (((gmac_pyobj *)(o))->f)
561extern PyObject *gmac_pywrap(PyObject *, gmac *, unsigned);
562extern int convgmac(PyObject *, void *);
563
b6a86d2e 564/*----- Key generation ----------------------------------------------------*/
0b1eafbf 565
b6a86d2e 566typedef struct pfilt_pyobj {
567 PyObject_HEAD
568 pfilt f;
569 int st;
570} pfilt_pyobj;
571
572extern PyTypeObject *pfilt_pytype;
573#define PFILT_PYCHECK(o) PyObject_TypeCheck(o, pfilt_pytype)
574#define PFILT_F(o) (&((pfilt_pyobj *)(o))->f)
575#define PFILT_ST(o) (((pfilt_pyobj *)(o))->st)
576
577typedef struct { pgen_proc *proc; void *ctx; } pgev;
578#define PGEV_HEAD PyObject_HEAD pgev pg;
579
580typedef struct pgev_pyobj {
581 PGEV_HEAD
582} pgev_pyobj;
583
584extern PyTypeObject *pgev_pytype;
585#define PGEV_PYCHECK(o) PyObject_TypeCheck(o, pgev_pytype)
586#define PGEV_PG(o) (&((pgev_pyobj *)(o))->pg)
587
588extern int convpgev(PyObject *, void *);
589extern void droppgev(pgev *);
590extern void pgenerr(void);
591
b6a86d2e 592/*----- That's all, folks -------------------------------------------------*/
593
594#ifdef __cplusplus
595 }
596#endif
597
598#endif