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