You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
816 B
35 lines
816 B
#include "Python.h"
|
|
#include "../_ssl.h"
|
|
|
|
#include "openssl/bio.h"
|
|
|
|
/* BIO_s_mem() to PyBytes
|
|
*/
|
|
static PyObject *
|
|
_PySSL_BytesFromBIO(_sslmodulestate *state, BIO *bio)
|
|
{
|
|
long size;
|
|
char *data = NULL;
|
|
size = BIO_get_mem_data(bio, &data);
|
|
if (data == NULL || size < 0) {
|
|
PyErr_SetString(PyExc_ValueError, "Not a memory BIO");
|
|
return NULL;
|
|
}
|
|
return PyBytes_FromStringAndSize(data, size);
|
|
}
|
|
|
|
/* BIO_s_mem() to PyUnicode
|
|
*/
|
|
static PyObject *
|
|
_PySSL_UnicodeFromBIO(_sslmodulestate *state, BIO *bio, const char *error)
|
|
{
|
|
long size;
|
|
char *data = NULL;
|
|
size = BIO_get_mem_data(bio, &data);
|
|
if (data == NULL || size < 0) {
|
|
PyErr_SetString(PyExc_ValueError, "Not a memory BIO");
|
|
return NULL;
|
|
}
|
|
return PyUnicode_DecodeUTF8(data, size, error);
|
|
}
|