Lines Matching defs:data
114 /* Include generated data (error codes) */
404 "Non-blocking SSL socket needs to read more data\n"
408 "Non-blocking SSL socket needs to write more data\n"
1336 unsigned char *p = name->d.ip->data;
1343 unsigned char *p = name->d.ip->data;
1476 ostr = PyUnicode_FromStringAndSize((char *)uri->data,
1543 ouri = PyUnicode_FromStringAndSize((char *)uri->data,
2642 * Otherwise OpenSSL might read in too much data,
2643 * eating clear text data that happens to be
2723 Get channel binding data for current connection.
2726 of the data or None if the data is not available (e.g. before the handshake).
2727 Only 'tls-unique' channel binding data from RFC 5929 is supported.
3747 const char *data = NULL;
3755 data = PyBytes_AS_STRING(password_bytes);
3758 data = PyBytes_AS_STRING(password);
3761 data = PyByteArray_AS_STRING(password);
3781 memcpy(pw_info->password, data, size);
3949 _add_ca_certs(PySSLContext *self, const void *data, Py_ssize_t len,
3960 "Empty certificate data");
3964 "Certificate data is too long.");
3968 biobuf = BIO_new_mem_buf(data, (int)len);
4013 msg = "not enough data: cadata does not contain a certificate";
4797 * just that no data is currently available. The SSL routines should retry
4859 EOF or that no data is available. Use the "eof" property to
4940 When all data has been read, the "eof" property will be True.
5273 Returns True if the OpenSSL PRNG has been seeded with enough data and False if not.