diff options
author | bertagaz <bertagaz@ptitcanardnoir.org> | 2011-06-14 15:26:19 +0200 |
---|---|---|
committer | bertagaz <bertagaz@ptitcanardnoir.org> | 2011-06-14 15:26:19 +0200 |
commit | 30e9097985656920f01a72efc1088caa2b8d41b3 (patch) | |
tree | bedbdb1aaa484af467e538110ab4c0c95985b6b8 /pycryptopp/publickey/rsamodule.hpp |
Imported Upstream version 0.5.29upstream/0.5.29
Diffstat (limited to 'pycryptopp/publickey/rsamodule.hpp')
-rw-r--r-- | pycryptopp/publickey/rsamodule.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pycryptopp/publickey/rsamodule.hpp b/pycryptopp/publickey/rsamodule.hpp new file mode 100644 index 0000000..30849a2 --- /dev/null +++ b/pycryptopp/publickey/rsamodule.hpp @@ -0,0 +1,21 @@ +#ifndef __INCL_RSAMODULE_HPP +#define __INCL_RSAMODULE_HPP + +void +init_rsa(PyObject* module); + +extern PyMethodDef rsa_functions[]; + +extern PyObject * +rsa_generate(PyObject *dummy, PyObject *args, PyObject *kwdict); +extern const char*const rsa_generate__doc__; + +extern PyObject * +rsa_create_verifying_key_from_string(PyObject *dummy, PyObject *args, PyObject *kwdict); +extern const char*const rsa_create_verifying_key_from_string__doc__; + +extern PyObject * +rsa_create_signing_key_from_string(PyObject *dummy, PyObject *args, PyObject *kwdict); +extern const char*const rsa_create_signing_key_from_string__doc__; + +#endif /* #ifndef __INCL_RSAMODULE_HPP */ |