X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/6bd22b53a63463d18ee6b1bd4d0ca0f02a8f5b99..a157093f4bbc3066fea2f77078b99489c76e62f8:/rand.c diff --git a/rand.c b/rand.c index 6fe78bc..9312c4c 100644 --- a/rand.c +++ b/rand.c @@ -27,14 +27,17 @@ /*----- Header files ------------------------------------------------------*/ #include "catacomb-python.h" +PUBLIC_SYMBOLS; #include "algorithms.h" +PRIVATE_SYMBOLS; /*----- Main code ---------------------------------------------------------*/ -PyTypeObject *grand_pytype, *truerand_pytype; -PyTypeObject *lcrand_pytype, *fibrand_pytype; -PyTypeObject *dsarand_pytype, *bbs_pytype, *bbspriv_pytype; -PyTypeObject *sslprf_pytype, *tlsdx_pytype, *tlsprf_pytype; +PyTypeObject *grand_pytype; +static PyTypeObject *truerand_pytype; +static PyTypeObject *lcrand_pytype, *fibrand_pytype; +static PyTypeObject *dsarand_pytype, *bbs_pytype, *bbspriv_pytype; +static PyTypeObject *sslprf_pytype, *tlsdx_pytype, *tlsprf_pytype; PyObject *rand_pyobj; static PyObject *gccrands_dict; @@ -54,14 +57,14 @@ PyObject *grand_pywrap(grand *r, unsigned f) PyTypeObject *ty = grand_pytype; PyObject *ob; - if (strcmp(r->ops->name, "rand") == 0) ty = truerand_pytype; - else if (strcmp(r->ops->name, "lcrand") == 0) ty = lcrand_pytype; - else if (strcmp(r->ops->name, "fibrand") == 0) ty = fibrand_pytype; - else if (strcmp(r->ops->name, "dsarand") == 0) ty = dsarand_pytype; - else if (strcmp(r->ops->name, "bbs") == 0) ty = bbs_pytype; - else if (strcmp(r->ops->name, "sslprf") == 0) ty = sslprf_pytype; - else if (strcmp(r->ops->name, "tlsdx") == 0) ty = tlsdx_pytype; - else if (strcmp(r->ops->name, "tlsprf") == 0) ty = tlsprf_pytype; + if (STRCMP(r->ops->name, ==, "rand")) ty = truerand_pytype; + else if (STRCMP(r->ops->name, ==, "lcrand")) ty = lcrand_pytype; + else if (STRCMP(r->ops->name, ==, "fibrand")) ty = fibrand_pytype; + else if (STRCMP(r->ops->name, ==, "dsarand")) ty = dsarand_pytype; + else if (STRCMP(r->ops->name, ==, "bbs")) ty = bbs_pytype; + else if (STRCMP(r->ops->name, ==, "sslprf")) ty = sslprf_pytype; + else if (STRCMP(r->ops->name, ==, "tlsdx")) ty = tlsdx_pytype; + else if (STRCMP(r->ops->name, ==, "tlsprf")) ty = tlsprf_pytype; else if ((ob = PyDict_GetItemString(gccrands_dict, r->ops->name)) != 0) ty = (PyTypeObject *)ob; return (grand_dopywrap(ty, r, f)); @@ -69,15 +72,25 @@ PyObject *grand_pywrap(grand *r, unsigned f) CONVFUNC(grand, grand *, GRAND_R) +static int grand_check(PyObject *me) +{ + if (!GRAND_R(me)) VALERR("random generator object is no longer valid"); + return (0); +end: + return (-1); +} + static PyObject *grmeth_byte(PyObject *me, PyObject *arg) { if (!PyArg_ParseTuple(arg, ":byte")) return (0); + if (grand_check(me)) return (0); return (PyInt_FromLong(grand_byte(GRAND_R(me)))); } static PyObject *grmeth_word(PyObject *me, PyObject *arg) { if (!PyArg_ParseTuple(arg, ":word")) return (0); + if (grand_check(me)) return (0); return (getulong(grand_word(GRAND_R(me)))); } @@ -88,6 +101,7 @@ static PyObject *grmeth_range(PyObject *me, PyObject *arg) mp *y = 0; if (!PyArg_ParseTuple(arg, "O:range", &m)) return (0); + if (grand_check(me)) return (0); if (PyInt_Check(m)) { long mm = PyInt_AS_LONG(m); if (mm <= 0) @@ -113,11 +127,12 @@ static PyObject *grmeth_mp(PyObject *me, PyObject *arg, PyObject *kw) { size_t l; mpw o = 0; - char *kwlist[] = { "bits", "or", 0 }; + static const char *const kwlist[] = { "bits", "or", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|O&:mp", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|O&:mp", KWLIST, convszt, &l, convmpw, &o)) goto end; + if (grand_check(me)) return (0); if (l < MPW_BITS && (o >> l)) VALERR("or mask too large"); return (mp_pywrap(mprand(MP_NEW, l, GRAND_R(me), o))); end: @@ -130,6 +145,7 @@ static PyObject *grmeth_block(PyObject *me, PyObject *arg) PyObject *rc = 0; if (!PyArg_ParseTuple(arg, "O&:block", convulong, &n)) goto end; + if (grand_check(me)) return (0); rc = bytestring_pywrap(0, n); grand_fill(GRAND_R(me), PyString_AS_STRING(rc), n); end: @@ -138,8 +154,7 @@ end: static int checkop(grand *r, unsigned op, const char *what) { - if (r->ops->misc(r, GRAND_CHECK, op)) - return (0); + if (r->ops->misc(r, GRAND_CHECK, op)) return (0); PyErr_Format(PyExc_TypeError, "operation %s not supported", what); return (-1); } @@ -149,7 +164,7 @@ static PyObject *grmeth_seedint(PyObject *me, PyObject *arg) int i; grand *r = GRAND_R(me); if (!PyArg_ParseTuple(arg, "i:seedint", &i) || - checkop(r, GRAND_SEEDINT, "seedint")) + grand_check(me) || checkop(r, GRAND_SEEDINT, "seedint")) goto end; r->ops->misc(r, GRAND_SEEDINT, i); RETURN_ME; @@ -162,7 +177,7 @@ static PyObject *grmeth_seedword(PyObject *me, PyObject *arg) uint32 u; grand *r = GRAND_R(me); if (!PyArg_ParseTuple(arg, "O&:seedword", convu32, &u) || - checkop(r, GRAND_SEEDUINT32, "seedword")) + grand_check(me) || checkop(r, GRAND_SEEDUINT32, "seedword")) goto end; r->ops->misc(r, GRAND_SEEDUINT32, u); RETURN_ME; @@ -176,7 +191,7 @@ static PyObject *grmeth_seedblock(PyObject *me, PyObject *arg) Py_ssize_t n; grand *r = GRAND_R(me); if (!PyArg_ParseTuple(arg, "s#:seedblock", &p, &n) || - checkop(r, GRAND_SEEDBLOCK, "seedblock")) + grand_check(me) || checkop(r, GRAND_SEEDBLOCK, "seedblock")) goto end; r->ops->misc(r, GRAND_SEEDBLOCK, p, (size_t)n); RETURN_ME; @@ -190,7 +205,7 @@ static PyObject *grmeth_seedmp(PyObject *me, PyObject *arg) mp *xx; grand *r = GRAND_R(me); if (!PyArg_ParseTuple(arg, "O:seedmp", &x) || - checkop(r, GRAND_SEEDMP, "seedmp") || + grand_check(me) || checkop(r, GRAND_SEEDMP, "seedmp") || (xx = getmp(x)) == 0) goto end; r->ops->misc(r, GRAND_SEEDMP, xx); @@ -202,12 +217,12 @@ end: static PyObject *grmeth_seedrand(PyObject *me, PyObject *arg, PyObject *kw) { - char *kwlist[] = { "rng", 0 }; + static const char *const kwlist[] = { "rng", 0 }; grand *r = GRAND_R(me); grand *rr = &rand_global; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:seedrand", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:seedrand", KWLIST, convgrand, &rr) || - checkop(r, GRAND_SEEDRAND, "seedrand")) + grand_check(me) || checkop(r, GRAND_SEEDRAND, "seedrand")) goto end; r->ops->misc(r, GRAND_SEEDRAND, rr); RETURN_ME; @@ -223,6 +238,7 @@ static PyObject *grmeth_mask(PyObject *me, PyObject *arg) PyObject *rc; if (!PyArg_ParseTuple(arg, "s#:mask", &p, &sz)) return (0); + if (grand_check(me)) return (0); rc = bytestring_pywrap(0, sz); q = PyString_AS_STRING(rc); GR_FILL(r, q, sz); @@ -233,18 +249,17 @@ static PyObject *grmeth_mask(PyObject *me, PyObject *arg) static void grand_pydealloc(PyObject *me) { grand_pyobj *g = (grand_pyobj *)me; - if (g->f & f_freeme) - GR_DESTROY(g->r); + if ((g->f & f_freeme) && g->r) GR_DESTROY(g->r); FREEOBJ(me); } static PyObject *grget_name(PyObject *me, void *hunoz) - { return (PyString_FromString(GRAND_R(me)->ops->name)); } + { return (grand_check(me) ? 0 : PyString_FromString(GRAND_R(me)->ops->name)); } static PyObject *grget_cryptop(PyObject *me, void *hunoz) - { return (getbool(GRAND_R(me)->ops->f & GRAND_CRYPTO)); } + { return (grand_check(me) ? 0 : getbool(GRAND_R(me)->ops->f & GRAND_CRYPTO)); } -static PyGetSetDef grand_pygetset[] = { +static const PyGetSetDef grand_pygetset[] = { #define GETSETNAME(op, name) gr##op##_##name GET (name, "R.name -> name of this kind of generator") GET (cryptop, "R.cryptop -> flag: cryptographically strong?") @@ -252,7 +267,7 @@ static PyGetSetDef grand_pygetset[] = { { 0 } }; -static PyMethodDef grand_pymethods[] = { +static const PyMethodDef grand_pymethods[] = { #define METHNAME(name) grmeth_##name METH (byte, "R.byte() -> BYTE") METH (word, "R.word() -> WORD") @@ -294,7 +309,7 @@ static PyTypeObject grand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Generic random number source.", + "Generic random number source.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -302,9 +317,9 @@ static PyTypeObject grand_pytype_skel = { 0, /* @tp_weaklistoffset@ */ 0, /* @tp_iter@ */ 0, /* @tp_iternext@ */ - grand_pymethods, /* @tp_methods@ */ + PYMETHODS(grand), /* @tp_methods@ */ 0, /* @tp_members@ */ - grand_pygetset, /* @tp_getset@ */ + PYGETSET(grand), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -320,8 +335,8 @@ static PyTypeObject grand_pytype_skel = { static PyObject *lcrand_pynew(PyTypeObject *me, PyObject *arg, PyObject *kw) { uint32 n = 0; - char *kwlist[] = { "seed", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:new", kwlist, convu32, &n)) + static const char *const kwlist[] = { "seed", 0 }; + if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:new", KWLIST, convu32, &n)) return (0); return (grand_dopywrap(lcrand_pytype, lcrand_create(n), f_freeme)); } @@ -351,7 +366,7 @@ static PyTypeObject lcrand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Linear congruential generator.", + "LCRand([seed = 0]): linear congruential generator.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -377,8 +392,8 @@ static PyTypeObject lcrand_pytype_skel = { static PyObject *fibrand_pynew(PyTypeObject *me, PyObject *arg, PyObject *kw) { uint32 n = 0; - char *kwlist[] = { "seed", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:new", kwlist, convu32, &n)) + static const char *const kwlist[] = { "seed", 0 }; + if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:new", KWLIST, convu32, &n)) return (0); return (grand_dopywrap(fibrand_pytype, fibrand_create(n), f_freeme)); } @@ -408,7 +423,7 @@ static PyTypeObject fibrand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Fibonacci generator.", + "FibRand([seed = 0]): Fibonacci generator.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -491,10 +506,10 @@ static PyObject *trmeth_timer(PyObject *me, PyObject *arg) static PyObject *truerand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { - char *kwlist[] = { 0 }; + static const char *const kwlist[] = { 0 }; grand *r; PyObject *rc = 0; - if (PyArg_ParseTupleAndKeywords(arg, kw, ":new", kwlist)) goto end; + if (!PyArg_ParseTupleAndKeywords(arg, kw, ":new", KWLIST)) goto end; r = rand_create(); r->ops->misc(r, RAND_NOISESRC, &noise_source); r->ops->misc(r, RAND_SEED, 160); @@ -503,7 +518,7 @@ end: return (rc); } -static PyMethodDef truerand_pymethods[] = { +static const PyMethodDef truerand_pymethods[] = { #define METHNAME(name) trmeth_##name METH (gate, "R.gate()") METH (stretch, "R.stretch()") @@ -521,7 +536,7 @@ static PyObject *trget_goodbits(PyObject *me, void *hunoz) return (PyInt_FromLong(r->ops->misc(r, RAND_GOODBITS))); } -static PyGetSetDef truerand_pygetset[] = { +static const PyGetSetDef truerand_pygetset[] = { #define GETSETNAME(op, name) tr##op##_##name GET (goodbits, "R.goodbits -> good bits of entropy remaining") #undef GETSETNAME @@ -553,7 +568,7 @@ static PyTypeObject truerand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"True random number source.", + "TrueRand(): true random number source.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -561,9 +576,9 @@ static PyTypeObject truerand_pytype_skel = { 0, /* @tp_weaklistoffset@ */ 0, /* @tp_iter@ */ 0, /* @tp_iternext@ */ - truerand_pymethods, /* @tp_methods@ */ + PYMETHODS(truerand), /* @tp_methods@ */ 0, /* @tp_members@ */ - truerand_pygetset, /* @tp_getset@ */ + PYGETSET(truerand), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -627,11 +642,11 @@ static const gccrand_info *const gcrandtab[] = { static PyObject *gcrand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { const gccrand_info *info = GCCRAND_INFO(ty); - static char *kwlist[] = { "key", 0 }; + static const char *const kwlist[] = { "key", 0 }; char *k; Py_ssize_t n; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#:new", kwlist, &k, &n)) + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#:new", KWLIST, &k, &n)) goto end; if (keysz(n, info->keysz) != n) VALERR("bad key length"); return (grand_dopywrap(ty, info->func(k, n), f_freeme)); @@ -643,11 +658,11 @@ static PyObject *gcirand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { const gccrand_info *info = GCCRAND_INFO(ty); uint32 i = 0; - static char *kwlist[] = { "key", "i", 0 }; + static const char *const kwlist[] = { "key", "i", 0 }; char *k; Py_ssize_t n; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#O&:new", KWLIST, &k, &n, convu32, &i)) goto end; if (keysz(n, info->keysz) != n) VALERR("bad key length"); @@ -661,11 +676,11 @@ end: static PyObject *gcnrand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { const gccrand_info *info = GCCRAND_INFO(ty); - static char *kwlist[] = { "key", "nonce", 0 }; + static const char *const kwlist[] = { "key", "nonce", 0 }; char *k, *n; Py_ssize_t ksz, nsz; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#:new", KWLIST, &k, &ksz, &n, &nsz)) goto end; if (keysz(ksz, info->keysz) != ksz) VALERR("bad key length"); @@ -681,15 +696,18 @@ static PyObject *gcshakyrand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { const gccrand_info *info = GCCRAND_INFO(ty); - static char *kwlist_shake[] = { "key", "func", "perso", 0 }; - static char *kwlist_func[] = { "key", "perso", 0 }; + static const char + *const kwlist_shake[] = { "key", "func", "perso", 0 }, + *const kwlist_func[] = { "key", "perso", 0 }; char *k, *f = 0, *p = 0; Py_ssize_t ksz, fsz = 0, psz = 0; if ((info->f&RNGF_MASK) == RNG_SHAKE - ? !PyArg_ParseTupleAndKeywords(arg, kw, "s#|s#s#:new", kwlist_shake, + ? !PyArg_ParseTupleAndKeywords(arg, kw, "s#|s#s#:new", + (/*unconst*/ char **)kwlist_shake, &k, &ksz, &f, &fsz, &p, &psz) - : !PyArg_ParseTupleAndKeywords(arg, kw, "s#|s#:new", kwlist_func, + : !PyArg_ParseTupleAndKeywords(arg, kw, "s#|s#:new", + (/*unconst*/ char **)kwlist_func, &k, &ksz, &p, &psz)) goto end; if (keysz(ksz, info->keysz) != ksz) VALERR("bad key length"); @@ -758,15 +776,15 @@ static PyObject *gclrmeth_seek(PyObject *me, PyObject *arg) RETURN_ME; } -static PyGetSetDef gccrand_pygetset[] = { +static const PyGetSetDef gccrand_pygetset[] = { #define GETSETNAME(op, name) gccr##op##_##name - GET (keysz, "CR.keysz -> acceptable key sizes") - GET (name, "CR.name -> name of this kind of generator") + GET (keysz, "CR.keysz -> acceptable key sizes") + GET (name, "CR.name -> name of this kind of generator") #undef GETSETNAME { 0 } }; -static PyMethodDef gclatinrand_pymethods[] = { +static const PyMethodDef gclatinrand_pymethods[] = { #define METHNAME(name) gclrmeth_##name METH (tell, "R.tell() -> OFF") METH (seek, "R.seek(OFF)") @@ -799,7 +817,7 @@ static PyTypeObject gccrand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Metaclass for symmetric crypto-based generators.", + "Metaclass for symmetric crypto-based generators.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -809,7 +827,7 @@ static PyTypeObject gccrand_pytype_skel = { 0, /* @tp_iternext@ */ 0, /* @tp_methods@ */ 0, /* @tp_members@ */ - gccrand_pygetset, /* @tp_getset@ */ + PYGETSET(gccrand), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -847,7 +865,7 @@ static PyTypeObject gcrand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Abstract base class for symmetric crypto-based generators.", + "Abstract base class for symmetric crypto-based generators.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -895,7 +913,7 @@ static PyTypeObject gclatinrand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Abstract base class for symmetric crypto-based generators.", + "Abstract base class for symmetric crypto-based generators.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -903,7 +921,7 @@ static PyTypeObject gclatinrand_pytype_skel = { 0, /* @tp_weaklistoffset@ */ 0, /* @tp_iter@ */ 0, /* @tp_iternext@ */ - gclatinrand_pymethods, /* @tp_methods@ */ + PYMETHODS(gclatinrand), /* @tp_methods@ */ 0, /* @tp_members@ */ 0, /* @tp_getset@ */ 0, /* @tp_base@ */ @@ -923,12 +941,12 @@ static PyTypeObject gclatinrand_pytype_skel = { static PyObject *sslprf_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { char *k, *s; - int ksz, ssz; + Py_ssize_t ksz, ssz; const gchash *hco = &md5, *hci = &sha; PyObject *rc = 0; - char *kwlist[] = { "key", "seed", "ohash", "ihash", 0 }; + static const char *const kwlist[] = { "key", "seed", "ohash", "ihash", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&O&:new", KWLIST, &k, &ksz, &s, &ssz, convgchash, &hco, convgchash, &hci)) goto end; @@ -940,12 +958,12 @@ end: static PyObject *tlsdx_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { char *k, *s; - int ksz, ssz; + Py_ssize_t ksz, ssz; const gcmac *mc = &sha_hmac; PyObject *rc = 0; - char *kwlist[] = { "key", "seed", "mac", 0 }; + static const char *const kwlist[] = { "key", "seed", "mac", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&:new", KWLIST, &k, &ksz, &s, &ssz, convgcmac, &mc)) goto end; @@ -957,12 +975,12 @@ end: static PyObject *tlsprf_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { char *k, *s; - int ksz, ssz; + Py_ssize_t ksz, ssz; const gcmac *mcl = &md5_hmac, *mcr = &sha_hmac; PyObject *rc = 0; - char *kwlist[] = { "key", "seed", "lmac", "rmac", 0 }; + static const char *const kwlist[] = { "key", "seed", "lmac", "rmac", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#s#|O&O&:new", KWLIST, &k, &ksz, &s, &ssz, convgcmac, &mcl, convgcmac, &mcr)) goto end; @@ -996,7 +1014,8 @@ static PyTypeObject sslprf_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Random number generator for SSL master secret.", + "SSLRand(KEY, SEED, [ohash = md5], [ihash = sha]):\n" + " RNG for SSL master secret.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1044,7 +1063,8 @@ static PyTypeObject tlsdx_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"TLS data expansion function.", + "TLSDataExpansion(KEY, SEED, [mac = sha_hmac]):\n" + " TLS data expansion function.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1092,7 +1112,8 @@ static PyTypeObject tlsprf_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"TLS pseudorandom function.", + "TLSPRF(KEY, SEED, [lmac = md5_hmac], [rmac = sha_hmac]):\n" + " TLS pseudorandom function.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1120,11 +1141,11 @@ static PyTypeObject tlsprf_pytype_skel = { static PyObject *dsarand_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { char *p; - int sz; + Py_ssize_t sz; PyObject *rc = 0; - char *kwlist[] = { "seed", 0 }; + static const char *const kwlist[] = { "seed", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#:new", kwlist, &p, &sz)) + if (!PyArg_ParseTupleAndKeywords(arg, kw, "s#:new", KWLIST, &p, &sz)) goto end; rc = grand_dopywrap(ty, dsarand_create(p, sz), f_freeme); end: @@ -1140,7 +1161,7 @@ static PyObject *drget_seed(PyObject *me, void *hunoz) return (rc); } -static PyGetSetDef dsarand_pygetset[] = { +static const PyGetSetDef dsarand_pygetset[] = { #define GETSETNAME(op, name) dr##op##_##name GET (seed, "R.seed -> current generator seed") #undef GETSETNAME @@ -1172,7 +1193,7 @@ static PyTypeObject dsarand_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Pseudorandom number generator for constructing DSA parameters.", + "DSARand(SEED): pseudorandom number generator for DSA parameters.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1182,7 +1203,7 @@ static PyTypeObject dsarand_pytype_skel = { 0, /* @tp_iternext@ */ 0, /* @tp_methods@ */ 0, /* @tp_members@ */ - dsarand_pygetset, /* @tp_getset@ */ + PYGETSET(dsarand), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -1201,9 +1222,9 @@ static PyObject *bbs_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw) { mp *n = 0, *x = MP_TWO; PyObject *rc = 0; - char *kwlist[] = { "n", "x", 0 }; + static const char *const kwlist[] = { "n", "x", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|O&:new", KWLIST, convmp, &n, convmp, &x)) goto end; rc = grand_dopywrap(ty, bbs_rand(n, x), f_freeme); @@ -1249,8 +1270,9 @@ static PyObject *bbsget_x(PyObject *me, void *hunoz) static int bbsset_x(PyObject *me, PyObject *val, void *hunoz) { - mp *x = 0; grand *r = GRAND_R(me); int rc = -1; if (!x) NIERR("__del__"); - if ((x = getmp(val)) == 0) goto end; r->ops->misc(r, BBS_SET, x); rc = 0; + mp *x = 0; grand *r = GRAND_R(me); int rc = -1; if (!val) NIERR("__del__"); + if ((x = getmp(val)) == 0) goto end; + r->ops->misc(r, BBS_SET, x); rc = 0; end: mp_drop(x); return (rc); } @@ -1260,16 +1282,16 @@ static PyObject *bbsget_stepsz(PyObject *me, void *hunoz) return (PyInt_FromLong(r->ops->misc(r, BBS_STEPSZ))); } -static PyMethodDef bbs_pymethods[] = { +static const PyMethodDef bbs_pymethods[] = { #define METHNAME(name) bbsmeth_##name - METH (step, "R.step(): steps the generator (not useful)") - METH (bits, "R.bits(N) -> W: returns N bits (<= 32) from the generator") - METH (wrap, "R.wrap(): flushes unused bits in internal buffer") + METH (step, "R.step(): steps the generator (not useful)") + METH (bits, "R.bits(N) -> W: returns N bits (<= 32) from the generator") + METH (wrap, "R.wrap(): flushes unused bits in internal buffer") #undef METHNAME { 0 } }; -static PyGetSetDef bbs_pygetset[] = { +static const PyGetSetDef bbs_pygetset[] = { #define GETSETNAME(op, name) bbs##op##_##name GET (n, "R.n -> Blum modulus") GETSET(x, "R.x -> current seed value") @@ -1303,7 +1325,7 @@ static PyTypeObject bbs_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Blum-Blum-Shub strong pseudorandom number generator.", + "BlumBlumShub(N, [x = 2]): Blum-Blum-Shub pseudorandom number generator.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1311,9 +1333,9 @@ static PyTypeObject bbs_pytype_skel = { 0, /* @tp_weaklistoffset@ */ 0, /* @tp_iter@ */ 0, /* @tp_iternext@ */ - bbs_pymethods, /* @tp_methods@ */ + PYMETHODS(bbs), /* @tp_methods@ */ 0, /* @tp_members@ */ - bbs_pygetset, /* @tp_getset@ */ + PYGETSET(bbs), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -1338,9 +1360,9 @@ static PyObject *bbspriv_pynew(PyTypeObject *ty, { mp *p = 0, *q = 0, *n = 0, *x = MP_TWO; bbspriv_pyobj *rc = 0; - char *kwlist[] = { "n", "p", "q", "seed", 0 }; + static const char *const kwlist[] = { "n", "p", "q", "seed", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&O&O&O&:new", kwlist, + if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&O&O&O&:new", KWLIST, convmp, &n, convmp, &p, convmp, &q, convmp, &x)) goto end; @@ -1359,23 +1381,25 @@ end: return ((PyObject *)rc); } -static PyObject *meth__BBSPriv_generate(PyObject *me, - PyObject *arg, PyObject *kw) +static PyObject *bpmeth_generate(PyObject *me, PyObject *arg, PyObject *kw) { bbs_priv bp = { 0 }; mp *x = MP_TWO; - pgev evt = { 0 }; + struct excinfo exc = EXCINFO_INIT; + pypgev evt = { { 0 } }; unsigned nbits, n = 0; grand *r = &rand_global; - char *kwlist[] = { "class", "nbits", "event", "rng", "nsteps", "seed", 0 }; + static const char *const kwlist[] = + { "nbits", "event", "rng", "nsteps", "seed", 0 }; bbspriv_pyobj *rc = 0; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "OO&|O&O&O&O&:generate", kwlist, - &me, convuint, &nbits, convpgev, &evt, + evt.exc = &exc; + if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|O&O&O&O&:generate", KWLIST, + convuint, &nbits, convpgev, &evt, convgrand, &r, convuint, &n, convmp, &x)) goto end; - if (bbs_gen(&bp, nbits, r, n, evt.proc, evt.ctx)) - VALERR("prime genration failed"); + if (bbs_gen(&bp, nbits, r, n, evt.ev.proc, evt.ev.ctx)) + PGENERR(&exc); rc = PyObject_New(bbspriv_pyobj, bbspriv_pytype); rc->gr.r = bbs_rand(bp.n, x); rc->gr.f = f_freeme; @@ -1419,15 +1443,17 @@ static PyObject *bpget_p(PyObject *me, void *hunoz) static PyObject *bpget_q(PyObject *me, void *hunoz) { return (mp_pywrap(MP_COPY(BBSPRIV_BP(me)->q))); } -static PyMethodDef bbspriv_pymethods[] = { +static const PyMethodDef bbspriv_pymethods[] = { #define METHNAME(name) bpmeth_##name - METH (ff, "R.ff(N): fast-forward N places") - METH (rew, "R.rew(N): rewind N places") + METH (ff, "R.ff(N): fast-forward N places") + METH (rew, "R.rew(N): rewind N places") + KWSMTH(generate, "generate(NBITS, [event = pgen_nullev], " + "[rng = rand], [nsteps = 0], [seed = 2]) -> R") #undef METHNAME { 0 } }; -static PyGetSetDef bbspriv_pygetset[] = { +static const PyGetSetDef bbspriv_pygetset[] = { #define GETSETNAME(op, name) bp##op##_##name GET (n, "R.n -> Blum modulus") GET (p, "R.p -> one of the factors of the modulus") @@ -1461,7 +1487,8 @@ static PyTypeObject bbspriv_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Blum-Blum-Shub strong pseudorandom generator, with private key.", + "BBSPriv(..., [seed = 2]): Blum-Blum-Shub, with private key.\n" + " Keywords: n, p, q; must provide at least two", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -1469,9 +1496,9 @@ static PyTypeObject bbspriv_pytype_skel = { 0, /* @tp_weaklistoffset@ */ 0, /* @tp_iter@ */ 0, /* @tp_iternext@ */ - bbspriv_pymethods, /* @tp_methods@ */ + PYMETHODS(bbspriv), /* @tp_methods@ */ 0, /* @tp_members@ */ - bbspriv_pygetset, /* @tp_getset@ */ + PYGETSET(bbspriv), /* @tp_getset@ */ 0, /* @tp_base@ */ 0, /* @tp_dict@ */ 0, /* @tp_descr_get@ */ @@ -1486,14 +1513,6 @@ static PyTypeObject bbspriv_pytype_skel = { /*----- Global stuff ------------------------------------------------------*/ -static PyMethodDef methods[] = { -#define METHNAME(name) meth_##name - KWMETH(_BBSPriv_generate, "\ -generate(NBITS, [event = pgen_nullev, rng = rand, nsteps = 0, seed = 2])") -#undef METHNAME - { 0 } -}; - void rand_pyinit(void) { INITTYPE(grand, root); @@ -1511,7 +1530,6 @@ void rand_pyinit(void) INITTYPE(gclatinrand, gcrand); rand_noisesrc(RAND_GLOBAL, &noise_source); rand_seed(RAND_GLOBAL, 160); - addmethods(methods); } #define gccrand gccrand_info