Skip to content

Instantly share code, notes, and snippets.

@rtyler
Created June 17, 2009 00:19
Show Gist options
  • Select an option

  • Save rtyler/130997 to your computer and use it in GitHub Desktop.

Select an option

Save rtyler/130997 to your computer and use it in GitHub Desktop.
static PyObject *new_keypair(PyObject *self, PyObject *args, PyObject *kwargs)
{
char *pubkey, *privkey;
PyObject *temp_state;
ECC_State state;
if (!PyArg_ParseTuple(args, "ssO", pubkey, privkey, temp_state))
return NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment