summaryrefslogtreecommitdiff
path: root/beecrypt/python/rng-py.h
diff options
context:
space:
mode:
Diffstat (limited to 'beecrypt/python/rng-py.h')
-rw-r--r--beecrypt/python/rng-py.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/beecrypt/python/rng-py.h b/beecrypt/python/rng-py.h
deleted file mode 100644
index 70a99c5b4..000000000
--- a/beecrypt/python/rng-py.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef H_RNG_PY
-#define H_RNG_PY
-
-/** \ingroup py_c
- * \file python/rng-py.h
- */
-#include "beecrypt.h"
-#include "mpprime.h"
-
-/**
- */
-typedef struct rngObject_s {
- PyObject_HEAD
- PyObject *md_dict; /*!< to look like PyModuleObject */
- randomGeneratorContext rngc;
- mpbarrett b;
-} rngObject;
-
-/**
- */
-/*@unchecked@*/
-extern PyTypeObject rng_Type;
-#define is_rng(o) ((o)->ob_type == &rng_Type)
-
-#endif