Home
last modified time | relevance | path

Searched refs:d2i_SSL_SESSION (Results 1 – 25 of 25) sorted by relevance

/third_party/openssl/doc/man3/
Dd2i_SSL_SESSION.pod5 d2i_SSL_SESSION, i2d_SSL_SESSION - convert SSL_SESSION object from/to ASN1 representation
11 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
28 d2i_SSL_SESSION() returns a pointer to the newly allocated SSL_SESSION
DSSL_SESSION_free.pod56 operation, e.g. by using L<d2i_SSL_SESSION(3)>.
72 L<d2i_SSL_SESSION(3)>
DSSL_CTX_sess_set_get_cb.pod55 L<d2i_SSL_SESSION(3)> interface.
108 L<ssl(7)>, L<d2i_SSL_SESSION(3)>,
DSSL_SESSION_get0_cipher.pod38 L<d2i_SSL_SESSION(3)>,
DSSL_SESSION_has_ticket.pod41 L<d2i_SSL_SESSION(3)>,
DSSL_SESSION_get0_hostname.pod59 L<d2i_SSL_SESSION(3)>,
DSSL_CTX_set_session_id_context.pod27 sessions with B<i2d_SSL_SESSION>/B<d2i_SSL_SESSION> it would be possible,
/third_party/openssl/fuzz/
Dasn1.c364 DO_TEST(SSL_SESSION, d2i_SSL_SESSION, i2d_SSL_SESSION, SSL_SESSION_print); in FuzzerTestOneInput()
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-session.c453 sess = d2i_SSL_SESSION(NULL, (const uint8_t **)&d.blob, in lws_tls_session_dump_load()
/third_party/openssl/test/
Dbad_dtls_test.c113 return d2i_SSL_SESSION(NULL, &p, sizeof(session_asn1)); in client_session()
/third_party/openssl/ssl/
Dssl_asn1.c243 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp, in d2i_SSL_SESSION() function
Dt1_lib.c1943 sess = d2i_SSL_SESSION(NULL, &p, slen); in tls_decrypt_ticket()
/third_party/node/src/
Dnode_crypto_common.cc118 SSLSessionPointer s(d2i_SSL_SESSION(nullptr, &buf, length)); in SetTLSSession()
136 return SSLSessionPointer(d2i_SSL_SESSION(nullptr, &buf, length)); in GetTLSSession()
Dnode_crypto.cc2013 SSL_SESSION* sess = d2i_SSL_SESSION(nullptr, &p, sbuf.length()); in LoadSession()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs558 pub fn d2i_SSL_SESSION( in d2i_SSL_SESSION() function
/third_party/openssl/ohos_lite/include/openssl/
Dssl.h1124 # define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,b…
1674 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
/third_party/nghttp2/src/
Dshrpx_tls.cc511 auto session = d2i_SSL_SESSION(nullptr, &p, res.value.size()); in tls_session_get_cb()
2448 return d2i_SSL_SESSION(nullptr, &p, cache.session_data.size()); in reuse_tls_session()
/third_party/openssl/util/
Dlibssl.num30 d2i_SSL_SESSION 31 3_0_0 EXIST::FUNCTION:
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs2072 #[corresponds(d2i_SSL_SESSION)]
2075 ffi::d2i_SSL_SESSION
/third_party/openssl/doc/
Dbuild.info2826 DEPEND[html/man3/d2i_SSL_SESSION.html]=man3/d2i_SSL_SESSION.pod
2827 GENERATE[html/man3/d2i_SSL_SESSION.html]=man3/d2i_SSL_SESSION.pod
2828 DEPEND[man/man3/d2i_SSL_SESSION.3]=man3/d2i_SSL_SESSION.pod
2829 GENERATE[man/man3/d2i_SSL_SESSION.3]=man3/d2i_SSL_SESSION.pod
3444 html/man3/d2i_SSL_SESSION.html \
4040 man/man3/d2i_SSL_SESSION.3 \
/third_party/openssl/include/openssl/
Dssl.h.in1124 # define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,b…
1712 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
/third_party/openssl/apps/
Ds_server.c3739 return d2i_SSL_SESSION(NULL, &p, sess->derlen); in get_session()
/third_party/openssl/ssl/statem/
Dstatem_srvr.c3717 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full); in construct_stateless_ticket()
/third_party/python/Modules/
D_ssl.c2774 newsession = d2i_SSL_SESSION(NULL, &const_p, slen); in _ssl_session_dup()
/third_party/openssl/
DCHANGES.md10110 - Avoid a buffer overflow in d2i_SSL_SESSION() (ssl_asn1.c).