1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved.
* Copyright (c) 2009-2010 Heikki Toivonen. All rights reserved.
*/
/* $Id: _rand.i 721 2010-02-13 06:30:33Z heikki $ */
%module _rand
%rename(rand_load_file) RAND_load_file;
extern int RAND_load_file(const char *, long);
%rename(rand_save_file) RAND_write_file;
extern int RAND_write_file(const char *);
%rename(rand_poll) RAND_poll;
extern int RAND_poll(void);
%rename(rand_status) RAND_status;
extern int RAND_status(void);
%rename(rand_cleanup) RAND_cleanup;
extern void RAND_cleanup(void);
%inline %{
static PyObject *_rand_err;
void rand_init(PyObject *rand_err) {
Py_INCREF(rand_err);
_rand_err = rand_err;
}
PyObject *rand_seed(PyObject *seed) {
const void *buf;
int len;
if (m2_PyObject_AsReadBufferInt(seed, &buf, &len) == -1)
return NULL;
RAND_seed(buf, len);
Py_INCREF(Py_None);
return Py_None;
}
PyObject *rand_add(PyObject *blob, double entropy) {
const void *buf;
int len;
if (m2_PyObject_AsReadBufferInt(blob, &buf, &len) == -1)
return NULL;
RAND_add(buf, len, entropy);
Py_INCREF(Py_None);
return Py_None;
}
PyObject *rand_bytes(int n) {
void *blob;
PyObject *obj;
if (!(blob = PyMem_Malloc(n))) {
PyErr_SetString(PyExc_MemoryError, "rand_bytes");
return NULL;
}
if (RAND_bytes(blob, n)) {
obj = PyString_FromStringAndSize(blob, n);
PyMem_Free(blob);
return obj;
} else {
PyMem_Free(blob);
Py_INCREF(Py_None);
return Py_None;
}
}
PyObject *rand_pseudo_bytes(int n) {
int ret;
unsigned char *blob;
PyObject *tuple;
if (!(blob=(unsigned char *)PyMem_Malloc(n))) {
PyErr_SetString(PyExc_MemoryError, "rand_pseudo_bytes");
return NULL;
}
if (!(tuple=PyTuple_New(2))) {
PyErr_SetString(PyExc_RuntimeError, "PyTuple_New() fails");
PyMem_Free(blob);
return NULL;
}
ret = RAND_pseudo_bytes(blob, n);
if (ret == -1) {
PyMem_Free(blob);
Py_DECREF(tuple);
Py_INCREF(Py_None);
return Py_None;
} else {
PyTuple_SET_ITEM(tuple, 0, PyString_FromStringAndSize((char*)blob, n));
PyMem_Free(blob);
PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong((long)ret));
return tuple;
}
}
void rand_screen(void) {
#ifdef __WINDOWS__
RAND_screen();
#endif
}
int rand_win32_event(unsigned int imsg, int wparam, long lparam) {
#ifdef __WINDOWS__
return RAND_event(imsg, wparam, lparam);
#else
return 0;
#endif
}
%}
/*
2004-04-05, ngps: Still missing:
RAND_egd
RAND_egd_bytes
RAND_query_egd_bytes
RAND_file_name
*/
|