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