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