Lines Matching refs:out
3605 int SSL_select_next_proto(unsigned char **out, unsigned char *outlen, in SSL_select_next_proto() argument
3615 *out = NULL; in SSL_select_next_proto()
3624 *out = (unsigned char *)PACKET_data(&csubpkt); in SSL_select_next_proto()
3639 *out = (unsigned char *)PACKET_data(&ssubpkt); in SSL_select_next_proto()
3849 int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen, in SSL_export_keying_material() argument
3863 return sc->ssl.method->ssl3_enc->export_keying_material(sc, out, olen, label, in SSL_export_keying_material()
3869 int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen, in SSL_export_keying_material_early() argument
3882 return tls13_export_keying_material_early(sc, out, olen, label, llen, in SSL_export_keying_material_early()
4323 goto out; in SSL_CTX_new_ex()
4329 goto out; in SSL_CTX_new_ex()
4340 goto out; in SSL_CTX_new_ex()
4354 out: in SSL_CTX_new_ex()
5693 size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen) in SSL_get_client_random() argument
5704 memcpy(out, sc->s3.client_random, outlen); in SSL_get_client_random()
5708 size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen) in SSL_get_server_random() argument
5719 memcpy(out, sc->s3.server_random, outlen); in SSL_get_server_random()
5724 unsigned char *out, size_t outlen) in SSL_SESSION_get_master_key() argument
5730 memcpy(out, session->master_key, outlen); in SSL_SESSION_get_master_key()
6107 unsigned char *out, size_t outlen, in ssl_handshake_hash() argument
6127 || EVP_DigestFinal_ex(ctx, out, NULL) <= 0) { in ssl_handshake_hash()
6821 size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out) in SSL_client_hello_get0_random() argument
6830 if (out != NULL) in SSL_client_hello_get0_random()
6831 *out = sc->clienthello->random; in SSL_client_hello_get0_random()
6835 size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out) in SSL_client_hello_get0_session_id() argument
6844 if (out != NULL) in SSL_client_hello_get0_session_id()
6845 *out = sc->clienthello->session_id; in SSL_client_hello_get0_session_id()
6849 size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out) in SSL_client_hello_get0_ciphers() argument
6858 if (out != NULL) in SSL_client_hello_get0_ciphers()
6859 *out = PACKET_data(&sc->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
6863 size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out) in SSL_client_hello_get0_compression_methods() argument
6872 if (out != NULL) in SSL_client_hello_get0_compression_methods()
6873 *out = sc->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
6877 int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen) in SSL_client_hello_get1_extensions_present() argument
6887 if (sc->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
6895 *out = NULL; in SSL_client_hello_get1_extensions_present()
6909 *out = present; in SSL_client_hello_get1_extensions_present()
6955 int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out, in SSL_client_hello_get0_ext() argument
6970 if (out != NULL) in SSL_client_hello_get0_ext()
6971 *out = PACKET_data(&r->data); in SSL_client_hello_get0_ext()
7029 char *out = NULL; in nss_keylog_int() local
7052 if ((out = cursor = OPENSSL_malloc(out_len)) == NULL) in nss_keylog_int()
7069 do_sslkeylogfile(SSL_CONNECTION_GET_SSL(sc), (const char *)out); in nss_keylog_int()
7072 sctx->keylog_callback(SSL_CONNECTION_GET_USER_SSL(sc), (const char *)out); in nss_keylog_int()
7073 OPENSSL_clear_free(out, out_len); in nss_keylog_int()