Home
last modified time | relevance | path

Searched refs:SSLSessionPointer (Results 1 – 4 of 4) sorted by relevance

/third_party/node/src/
Dnode_crypto_common.h58 const SSLSessionPointer& session);
60 SSLSessionPointer GetTLSSession(v8::Local<v8::Value> val);
62 SSLSessionPointer GetTLSSession(const unsigned char* buf, size_t length);
Dnode_crypto_common.cc118 SSLSessionPointer s(d2i_SSL_SESSION(nullptr, &buf, length)); in SetTLSSession()
124 const SSLSessionPointer& session) { in SetTLSSession()
128 SSLSessionPointer GetTLSSession(Local<Value> val) { in GetTLSSession()
130 return SSLSessionPointer(); in GetTLSSession()
135 SSLSessionPointer GetTLSSession(const unsigned char* buf, size_t length) { in GetTLSSession()
136 return SSLSessionPointer(d2i_SSL_SESSION(nullptr, &buf, length)); in GetTLSSession()
Dnode_crypto.h67 using SSLSessionPointer = DeleteFnPtr<SSL_SESSION, SSL_SESSION_free>; variable
296 SSLSessionPointer next_sess_;
Dnode_crypto.cc1994 SSLSessionPointer sess = GetTLSSession(args[0]); in SetSession()