File: win32prng.c

package info (click to toggle)
python-gdata 2.0.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,080 kB
  • sloc: python: 73,579; ansic: 150; sh: 33; makefile: 11
file content (63 lines) | stat: -rw-r--r-- 1,198 bytes parent folder | download | duplicates (10)
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

#include "Python.h"
#define _WIN32_WINNT 0x0400	  /* Needed for CryptoAPI on some systems */
#include <windows.h>


static PyObject* getRandomBytes(PyObject *self, PyObject *args)
{
	int howMany;
	HCRYPTPROV hCryptProv;
	unsigned char* bytes = NULL;
	PyObject* returnVal = NULL;


	/* Read Arguments */
    if (!PyArg_ParseTuple(args, "i", &howMany))
    	return(NULL);

	/* Get Context */
	if(CryptAcquireContext(
	   &hCryptProv,
	   NULL,
	   NULL,
	   PROV_RSA_FULL,
	   CRYPT_VERIFYCONTEXT) == 0)
		return Py_BuildValue("s#", NULL, 0);


	/* Allocate bytes */
	bytes = malloc(howMany);


	/* Get random data */
	if(CryptGenRandom(
	   hCryptProv,
	   howMany,
	   bytes) == 0)
		returnVal = Py_BuildValue("s#", NULL, 0);
	else
		returnVal = Py_BuildValue("s#", bytes, howMany);

	free(bytes);
	CryptReleaseContext(hCryptProv, 0);

	return returnVal;
}



/* List of functions exported by this module */

static struct PyMethodDef win32prng_functions[] = {
    {"getRandomBytes", (PyCFunction)getRandomBytes, METH_VARARGS},
    {NULL,  NULL}        /* Sentinel */
};


/* Initialize this module. */

DL_EXPORT(void) initwin32prng(void)
{
    Py_InitModule("win32prng", win32prng_functions);
}