More fixing for modern Pythons. No longer works with 2.2. Sorry.
[pyke] / catacomb-python.h
CommitLineData
b6a86d2e 1/* -*-c-*-
2 *
3 * $Id$
4 *
5 * Definitions for Catacomb bindings
6 *
7 * (c) 2004 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the Python interface to Catacomb.
13 *
14 * Catacomb/Python is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * Catacomb/Python is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Catacomb/Python; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29#ifndef CATACOMB_PYTHON_H
30#define CATACOMB_PYTHON_H
31
32#ifdef __cplusplus
33 extern "C" {
34#endif
35
36/*----- Header files ------------------------------------------------------*/
37
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>
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>
58
59#include <catacomb/gcipher.h>
60#include <catacomb/ghash.h>
61#include <catacomb/gmac.h>
62#include <catacomb/md5.h>
63#include <catacomb/md5-hmac.h>
64#include <catacomb/sha.h>
65#include <catacomb/sha-mgf.h>
66#include <catacomb/sha-hmac.h>
67
68#include <catacomb/mp.h>
69#include <catacomb/mpint.h>
70#include <catacomb/mpmul.h>
71#include <catacomb/mpcrt.h>
72#include <catacomb/mpmont.h>
73#include <catacomb/mpbarrett.h>
74#include <catacomb/mpreduce.h>
75
76#include <catacomb/pgen.h>
77#include <catacomb/pfilt.h>
78#include <catacomb/strongprime.h>
79#include <catacomb/limlee.h>
80#include <catacomb/dh.h>
81#include <catacomb/ptab.h>
82#include <catacomb/bintab.h>
83#include <catacomb/dsa.h>
84
85#include <catacomb/gf.h>
86#include <catacomb/gfreduce.h>
87#include <catacomb/gfn.h>
88
89#include <catacomb/field.h>
90#include <catacomb/field-guts.h>
91
92#include <catacomb/ec.h>
93#include <catacomb/ec-raw.h>
94#include <catacomb/ectab.h>
95
96#include <catacomb/group.h>
97#include <catacomb/group-guts.h>
98
99#include <catacomb/gdsa.h>
100#include <catacomb/gkcdsa.h>
101#include <catacomb/rsa.h>
102
103#include <catacomb/key.h>
104#include <catacomb/passphrase.h>
105#include <catacomb/pixie.h>
106
107/*----- Utility macros ----------------------------------------------------*/
108
109#define RETURN_OBJ(obj) do { Py_INCREF(obj); return (obj); } while (0)
110#define RETURN_NONE RETURN_OBJ(Py_None)
111#define RETURN_NOTIMPL RETURN_OBJ(Py_NotImplemented)
112#define RETURN_TRUE RETURN_OBJ(Py_True)
113#define RETURN_FALSE RETURN_OBJ(Py_False)
114#define RETURN_ME RETURN_OBJ(me)
115
116#define EXCERR(exc, str) do { \
117 PyErr_SetString(exc, str); \
118 goto end; \
119} while (0)
120#define VALERR(str) EXCERR(PyExc_ValueError, str)
121#define TYERR(str) EXCERR(PyExc_TypeError, str)
122#define ZDIVERR(str) EXCERR(PyExc_ZeroDivisionError, str)
123#define SYNERR(str) EXCERR(PyExc_SyntaxError, str)
124#define SYSERR(str) EXCERR(PyExc_SystemError, str)
125#define OSERR(name) do { \
126 PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); \
127 goto end; \
128} while (0)
129#define PGENERR do { pgenerr(); goto end; } while (0)
130
131#define CONVFUNC(ty, cty, ext) \
132 int conv##ty(PyObject *o, void *p) \
133 { \
134 if (!PyObject_TypeCheck(o, ty##_pytype)) \
135 TYERR("wanted a " #ty); \
136 *(cty *)p = ext(o); \
137 return (1); \
138 end: \
139 return (0); \
140 }
141
142#define root_pytype 0
143#define type_pytype &PyType_Type
144#define INITTYPE(ty, base) do { \
145 ty##_pytype_skel.tp_base = base##_pytype; \
146 ty##_pytype = inittype(&ty##_pytype_skel); \
147} while (0)
148
149#define INSERT(name, ob) do { \
150 PyObject *_o = (PyObject *)(ob); \
151 Py_INCREF(_o); \
152 PyModule_AddObject(mod, name, _o); \
153} while (0)
154
155#define METH(func, doc) \
156 { #func, METHNAME(func), METH_VARARGS, doc },
157#define KWMETH(func, doc) \
158 { #func, (PyCFunction)METHNAME(func), \
159 METH_VARARGS | METH_KEYWORDS, doc },
160
161#define GET(func, doc) \
162 { #func, GETSETNAME(get, func), 0, doc },
163#define GETSET(func, doc) \
164 { #func, GETSETNAME(get, func), GETSETNAME(set, func), doc },
165
166#define MEMBER(name, ty, f, doc) \
167 { #name, ty, offsetof(MEMBERSTRUCT, name), f, doc },
168
169#define MODULES(DO) \
170 DO(bytestring) \
171 DO(rand) DO(algorithms) DO(pubkey) DO(pgen) \
172 DO(mp) DO(field) DO(ec) DO(group) \
173 DO(passphrase)
174#define DOMODINIT(m) m##_pyinit();
175#define DOMODINSERT(m) m##_pyinsert(mod);
176#define INIT_MODULES do { MODULES(DOMODINIT) } while (0)
177#define INSERT_MODULES do { MODULES(DOMODINSERT) } while (0)
178
179#define DO(m) \
180 extern void m##_pyinit(void); \
181 extern void m##_pyinsert(PyObject *);
182MODULES(DO)
183#undef DO
184
ba45a729 185#define FREEOBJ(obj) \
186 (((PyObject *)(obj))->ob_type->tp_free((PyObject *)(obj)))
187
b6a86d2e 188/*----- Bytestrings -------------------------------------------------------*/
189
190PyTypeObject *bytestring_pyobj;
191PyObject *bytestring_pywrap(const void *, size_t);
192PyObject *bytestring_pywrapbuf(buf *);
193
194/*----- Multiprecision arithmetic -----------------------------------------*/
195
196typedef struct mp_pyobj {
197 PyObject_HEAD
198 mp *x;
199} mp_pyobj;
200
201extern PyTypeObject *mp_pytype;
202extern PyTypeObject *gf_pytype;
203#define MP_X(o) (((mp_pyobj *)(o))->x)
204#define MP_PYCHECK(o) PyObject_TypeCheck((o), mp_pytype)
205#define GF_PYCHECK(o) PyObject_TypeCheck((o), gf_pytype)
206
207extern mp *mp_frompylong(PyLongObject *);
208extern PyLongObject *mp_topylong(mp *);
209extern mp *tomp(PyObject *);
210extern mp *getmp(PyObject *);
211extern int convmp(PyObject *, void *);
212extern mp *getgf(PyObject *);
213extern int convgf(PyObject *, void *);
214extern PyObject *mp_pywrap(mp *);
215extern PyObject *gf_pywrap(mp *);
216extern mp *mp_frompyobject(PyObject *, int);
217extern PyObject *mp_topystring(mp *, int,
218 const char *, const char *, const char *);
219extern int mp_tolong_checked(mp *, long *);
220
221/*----- Abstract fields ---------------------------------------------------*/
222
223typedef struct field_pyobj {
f0526039 224 PyHeapTypeObject ty;
b6a86d2e 225 field *f;
226} field_pyobj;
227
228extern PyTypeObject *fe_pytype;
229#define FE_PYCHECK(o) PyObject_TypeCheck((o), fe_pytype)
230#define FE_F(o) (((fe_pyobj *)(o))->f)
231#define FE_FOBJ(o) ((PyObject *)(o)->ob_type)
232#define FE_X(o) (((fe_pyobj *)(o))->x)
233extern PyObject *fe_pywrap(PyObject *, mp *);
234extern mp *getfe(field *, PyObject *);
235
236typedef struct fe_pyobj {
237 PyObject_HEAD
238 field *f;
239 PyObject *fobj; /* to keep it alive */
240 mp *x;
241} fe_pyobj;
242
243extern PyTypeObject *field_pytype;
244extern PyTypeObject *primefield_pytype;
245extern PyTypeObject *niceprimefield_pytype;
246extern PyTypeObject *binfield_pytype;
247extern PyTypeObject *binpolyfield_pytype;
248extern PyTypeObject *binnormfield_pytype;
249#define FIELD_PYCHECK(o) PyObject_TypeCheck((o), field_pytype)
250#define FIELD_F(o) (((field_pyobj *)(o))->f)
251extern PyObject *field_pywrap(field *);
252extern field *field_copy(field *);
253
254/*----- Elliptic curves ---------------------------------------------------*/
255
256typedef struct ecpt_pyobj {
257 PyObject_HEAD
258 ec_curve *c;
259 ec p;
260} ecpt_pyobj;
261
262extern PyTypeObject *ecpt_pytype, *ecptcurve_pytype;
263#define ECPT_PYCHECK(o) PyObject_TypeCheck((o), ecpt_pytype)
264#define ECPTCURVE_PYCHECK(o) PyObject_TypeCheck((o), ecptcurve_pytype)
265#define ECPT_C(o) (((ecpt_pyobj *)(o))->c)
266#define ECPT_COBJ(o) ((PyObject *)(o)->ob_type)
267#define ECPT_FOBJ(o) ECCURVE_FOBJ(ECPT_COBJ((o)))
268#define ECPT_P(o) (&((ecpt_pyobj *)(o))->p)
269extern PyObject *ecpt_pywrap(PyObject *, ec *);
270extern PyObject *ecpt_pywrapout(void *, ec *);
271extern int toecpt(ec_curve *, ec *, PyObject *);
272extern int getecpt(ec_curve *, ec *, PyObject *);
273extern void getecptout(ec *, PyObject *);
274extern int convec(PyObject *, void *);
275
276typedef struct eccurve_pyobj {
f0526039 277 PyHeapTypeObject ty;
b6a86d2e 278 ec_curve *c;
279 PyObject *fobj;
280} eccurve_pyobj;
281
282extern PyTypeObject *eccurve_pytype;
283extern PyTypeObject *ecprimecurve_pytype;
284extern PyTypeObject *ecprimeprojcurve_pytype;
285extern PyTypeObject *ecbincurve_pytype;
286extern PyTypeObject *ecbinprojcurve_pytype;
287#define ECCURVE_PYCHECK(o) PyObject_TypeCheck((o), eccurve_pytype)
288#define ECCURVE_C(o) (((eccurve_pyobj *)(o))->c)
289#define ECCURVE_FOBJ(o) (((eccurve_pyobj *)(o))->fobj)
290extern PyObject *eccurve_pywrap(PyObject *, ec_curve *);
291extern ec_curve *eccurve_copy(ec_curve *);
292
293typedef struct ecinfo_pyobj {
294 PyObject_HEAD
295 ec_info ei;
296 PyObject *cobj;
297} ecinfo_pyobj;
298
299extern PyTypeObject *ecinfo_pytype;
300#define ECINFO_PYCHECK(o) PyObject_TypeCheck((o), ecinfo_pytype)
301#define ECINFO_EI(o) (&((ecinfo_pyobj *)(o))->ei)
302#define ECINFO_COBJ(o) (((ecinfo_pyobj *)(o))->cobj)
303extern void ecinfo_copy(ec_info *, const ec_info *);
304extern PyObject *ecinfo_pywrap(ec_info *);
305
306/*----- Cyclic groups -----------------------------------------------------*/
307
308typedef struct fginfo_pyobj {
309 PyObject_HEAD
310 gprime_param dp;
311} fginfo_pyobj;
312
313PyTypeObject *fginfo_pytype, *dhinfo_pytype, *bindhinfo_pytype;
314#define FGINFO_DP(fg) (&((fginfo_pyobj *)(fg))->dp)
315PyObject *fginfo_pywrap(gprime_param *, PyTypeObject *);
316
317typedef struct ge_pyobj {
318 PyObject_HEAD
319 ge *x;
320 group *g;
321} ge_pyobj;
322
323extern PyTypeObject *ge_pytype;
324#define GE_PYCHECK(o) PyObject_TypeCheck((o), ge_pytype)
325#define GE_X(o) (((ge_pyobj *)(o))->x)
326#define GE_G(o) (((ge_pyobj *)(o))->g)
327#define GE_GOBJ(o) ((PyObject *)(group_pyobj *)(o)->ob_type)
328extern PyObject *ge_pywrap(PyObject *, ge *);
329
330typedef struct group_pyobj {
f0526039 331 PyHeapTypeObject ty;
b6a86d2e 332 group *g;
333} group_pyobj;
334
335extern PyTypeObject *group_pytype;
336extern PyTypeObject *primegroup_pytype, *bingroup_pytype, *ecgroup_pytype;
337#define GROUP_G(o) (((group_pyobj *)(o))->g)
338extern PyObject *group_pywrap(group *);
339extern group *group_copy(group *);
340
341/*----- Random number generators ------------------------------------------*/
342
343#define f_freeme 1u
344
345typedef struct grand_pyobj {
346 PyObject_HEAD
347 unsigned f;
348 grand *r;
349} grand_pyobj;
350
351extern PyTypeObject *grand_pytype, *truerand_pytype;
352extern PyTypeObject *lcrand_pytype,* fibrand_pytype;
353extern PyTypeObject *dsarand_pytype, *bbs_pytype;
354extern PyObject *rand_pyobj;
355#define GRAND_PYCHECK(o) PyObject_TypeCheck((o), grand_pytype)
356#define GRAND_F(o) (((grand_pyobj *)(o))->f)
357#define GRAND_R(o) (((grand_pyobj *)(o))->r)
358extern PyObject *grand_pywrap(grand *, unsigned);
359extern int convgrand(PyObject *, void *);
360
361/*----- Key sizes ---------------------------------------------------------*/
362
363typedef struct keysz_pyobj {
364 PyObject_HEAD
365 int dfl;
366} keysz_pyobj;
367
368typedef struct keyszrange_pyobj {
369 PyObject_HEAD
370 int dfl;
371 int min, max, mod;
372} keyszrange_pyobj;
373
374typedef struct keyszset_pyobj {
375 PyObject_HEAD
376 int dfl;
377 PyObject *set;
378} keyszset_pyobj;
379
380#define KEYSZ_PYCHECK(o) PyObject_TypeCheck((o), keysz_pytype)
381extern PyObject *keysz_pywrap(const octet *);
382
383/*----- Symmetric cryptography --------------------------------------------*/
384
385typedef struct gccipher_pyobj {
f0526039 386 PyHeapTypeObject ty;
b6a86d2e 387 gccipher *cc;
388} gccipher_pyobj;
389
390extern PyTypeObject *gccipher_pytype;
391#define GCCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gccipher_pytype)
392#define GCCIPHER_CC(o) (((gccipher_pyobj *)(o))->cc)
393#define GCCIPHER_F(o) (((gccipher_pyobj *)(o))->f)
394extern PyObject *gccipher_pywrap(gccipher *);
395extern int convgccipher(PyObject *, void *);
396extern int convgcipher(PyObject *, void *);
397
398typedef struct gcipher_pyobj {
399 PyObject_HEAD
400 unsigned f;
401 gcipher *c;
402} gcipher_pyobj;
403
404extern PyTypeObject *gcipher_pytype;
405#define GCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gcipher_pytype)
406#define GCIPHER_C(o) (((gcipher_pyobj *)(o))->c)
407#define GCIPHER_F(o) (((gcipher_pyobj *)(o))->f)
408extern PyObject *gcipher_pywrap(PyObject *, gcipher *, unsigned);
409extern int convgcipher(PyObject *, void *);
410
411typedef struct gchash_pyobj {
f0526039 412 PyHeapTypeObject ty;
b6a86d2e 413 gchash *ch;
414} gchash_pyobj;
415
416extern PyTypeObject *gchash_pytype;
417#define GCHASH_PYCHECK(o) PyObject_TypeCheck((o), gchash_pytype)
418#define GCHASH_CH(o) (((gchash_pyobj *)(o))->ch)
419#define GCHASH_F(o) (((gchash_pyobj *)(o))->f)
420extern PyObject *gchash_pywrap(gchash *);
421extern int convgchash(PyObject *, void *);
422
423typedef struct ghash_pyobj {
424 PyObject_HEAD
425 unsigned f;
426 ghash *h;
427} ghash_pyobj;
428
429extern PyTypeObject *ghash_pytype, *gmhash_pytype;
430extern PyObject *sha_pyobj, *has160_pyobj;
431#define GHASH_PYCHECK(o) PyObject_TypeCheck((o), ghash_pytype)
432#define GHASH_H(o) (((ghash_pyobj *)(o))->h)
433#define GHASH_F(o) (((ghash_pyobj *)(o))->f)
434extern PyObject *ghash_pywrap(PyObject *, ghash *, unsigned);
435extern int convghash(PyObject *, void *);
436extern int convgmhash(PyObject *, void *);
437
438typedef struct gcmac_pyobj {
f0526039 439 PyHeapTypeObject ty;
b6a86d2e 440 gcmac *cm;
441} gcmac_pyobj;
442
443extern PyTypeObject *gcmac_pytype;
444#define GCMAC_PYCHECK(o) PyObject_TypeCheck((o), gcmac_pytype)
445#define GCMAC_CM(o) (((gcmac_pyobj *)(o))->cm)
446#define GCMAC_F(o) (((gcmac_pyobj *)(o))->f)
447extern PyObject *gcmac_pywrap(gcmac *);
448extern int convgcmac(PyObject *, void *);
449
450typedef struct gmac_pyobj {
f0526039 451 PyHeapTypeObject ty;
b6a86d2e 452 unsigned f;
453 gmac *m;
b6a86d2e 454} gmac_pyobj;
455
456extern PyTypeObject *gmac_pytype;
457#define GMAC_PYCHECK(o) PyObject_TypeCheck((o), gmac_pytype)
458#define GMAC_M(o) (((gmac_pyobj *)(o))->m)
b6a86d2e 459#define GMAC_F(o) (((gmac_pyobj *)(o))->f)
460extern PyObject *gmac_pywrap(PyObject *, gmac *, unsigned);
461extern int convgmac(PyObject *, void *);
462
463/*----- Public key crypto -------------------------------------------------*/
464
465/*----- Key generation ----------------------------------------------------*/
466
467typedef struct pfilt_pyobj {
468 PyObject_HEAD
469 pfilt f;
470 int st;
471} pfilt_pyobj;
472
473extern PyTypeObject *pfilt_pytype;
474#define PFILT_PYCHECK(o) PyObject_TypeCheck(o, pfilt_pytype)
475#define PFILT_F(o) (&((pfilt_pyobj *)(o))->f)
476#define PFILT_ST(o) (((pfilt_pyobj *)(o))->st)
477
478typedef struct { pgen_proc *proc; void *ctx; } pgev;
479#define PGEV_HEAD PyObject_HEAD pgev pg;
480
481typedef struct pgev_pyobj {
482 PGEV_HEAD
483} pgev_pyobj;
484
485extern PyTypeObject *pgev_pytype;
486#define PGEV_PYCHECK(o) PyObject_TypeCheck(o, pgev_pytype)
487#define PGEV_PG(o) (&((pgev_pyobj *)(o))->pg)
488
489extern int convpgev(PyObject *, void *);
490extern void droppgev(pgev *);
491extern void pgenerr(void);
492
493/*----- Core utility functions --------------------------------------------*/
494
495extern PyObject *mexp_common(PyObject *, PyObject *, size_t,
496 PyObject *(*id)(PyObject *),
497 int (*fill)(void *, PyObject *,
498 PyObject *, PyObject *),
499 PyObject *(*exp)(PyObject *, void *, int),
500 void (*drop)(void *));
501
502extern int convulong(PyObject *, void *);
503extern int convu32(PyObject *, void *);
504extern int convmpw(PyObject *, void *);
505extern int convuint(PyObject *, void *);
506extern int convszt(PyObject *, void *);
507extern int convbool(PyObject *, void *);
508extern PyObject *abstract_pynew(PyTypeObject *, PyObject *, PyObject *);
509extern PyObject *getbool(int);
510extern PyObject *getu32(uint32);
f0526039 511extern void *newtype(PyTypeObject *, const PyTypeObject *, const char *);
b6a86d2e 512extern PyTypeObject *inittype(PyTypeObject *);
513extern void addmethods(const PyMethodDef *);
514
515/*----- That's all, folks -------------------------------------------------*/
516
517#ifdef __cplusplus
518 }
519#endif
520
521#endif