Lines Matching refs:SecureContext
131 template void SSLWrap<TLSWrap>::ConfigureSecureContext(SecureContext* sc);
132 template int SSLWrap<TLSWrap>::SetCACerts(SecureContext* sc);
472 void SecureContext::Initialize(Environment* env, Local<Object> target) { in Initialize()
475 SecureContext::kInternalFieldCount); in Initialize()
543 SecureContext::SecureContext(Environment* env, Local<Object> wrap) in SecureContext() function in node::crypto::SecureContext
549 inline void SecureContext::Reset() { in Reset()
558 SecureContext::~SecureContext() { in ~SecureContext()
562 void SecureContext::New(const FunctionCallbackInfo<Value>& args) { in New()
564 new SecureContext(env, args.This()); in New()
571 void SecureContext::Init(const FunctionCallbackInfo<Value>& args) { in Init()
572 SecureContext* sc; in Init()
719 void SecureContext::SetKey(const FunctionCallbackInfo<Value>& args) { in SetKey()
722 SecureContext* sc; in SetKey()
766 void SecureContext::SetSigalgs(const FunctionCallbackInfo<Value>& args) { in SetSigalgs()
767 SecureContext* sc; in SetSigalgs()
793 void SecureContext::SetEngineKey(const FunctionCallbackInfo<Value>& args) { in SetEngineKey()
796 SecureContext* sc; in SetEngineKey()
954 void SecureContext::SetCert(const FunctionCallbackInfo<Value>& args) { in SetCert()
957 SecureContext* sc; in SetCert()
1041 void SecureContext::AddCACert(const FunctionCallbackInfo<Value>& args) { in AddCACert()
1044 SecureContext* sc; in AddCACert()
1070 void SecureContext::AddCRL(const FunctionCallbackInfo<Value>& args) { in AddCRL()
1073 SecureContext* sc; in AddCRL()
1160 void SecureContext::AddRootCerts(const FunctionCallbackInfo<Value>& args) { in AddRootCerts()
1161 SecureContext* sc; in AddRootCerts()
1175 void SecureContext::SetCipherSuites(const FunctionCallbackInfo<Value>& args) { in SetCipherSuites()
1178 SecureContext* sc; in SetCipherSuites()
1195 void SecureContext::SetCiphers(const FunctionCallbackInfo<Value>& args) { in SetCiphers()
1196 SecureContext* sc; in SetCiphers()
1220 void SecureContext::SetECDHCurve(const FunctionCallbackInfo<Value>& args) { in SetECDHCurve()
1221 SecureContext* sc; in SetECDHCurve()
1240 void SecureContext::SetDHParam(const FunctionCallbackInfo<Value>& args) { in SetDHParam()
1241 SecureContext* sc; in SetDHParam()
1283 void SecureContext::SetMinProto(const FunctionCallbackInfo<Value>& args) { in SetMinProto()
1284 SecureContext* sc; in SetMinProto()
1296 void SecureContext::SetMaxProto(const FunctionCallbackInfo<Value>& args) { in SetMaxProto()
1297 SecureContext* sc; in SetMaxProto()
1309 void SecureContext::GetMinProto(const FunctionCallbackInfo<Value>& args) { in GetMinProto()
1310 SecureContext* sc; in GetMinProto()
1321 void SecureContext::GetMaxProto(const FunctionCallbackInfo<Value>& args) { in GetMaxProto()
1322 SecureContext* sc; in GetMaxProto()
1333 void SecureContext::SetOptions(const FunctionCallbackInfo<Value>& args) { in SetOptions()
1334 SecureContext* sc; in SetOptions()
1349 void SecureContext::SetSessionIdContext( in SetSessionIdContext()
1351 SecureContext* sc; in SetSessionIdContext()
1388 void SecureContext::SetSessionTimeout(const FunctionCallbackInfo<Value>& args) { in SetSessionTimeout()
1389 SecureContext* sc; in SetSessionTimeout()
1402 void SecureContext::Close(const FunctionCallbackInfo<Value>& args) { in Close()
1403 SecureContext* sc; in Close()
1410 void SecureContext::LoadPKCS12(const FunctionCallbackInfo<Value>& args) { in LoadPKCS12()
1416 SecureContext* sc; in LoadPKCS12()
1489 void SecureContext::SetClientCertEngine( in SetClientCertEngine()
1495 SecureContext* sc; in SetClientCertEngine()
1527 void SecureContext::GetTicketKeys(const FunctionCallbackInfo<Value>& args) { in GetTicketKeys()
1530 SecureContext* wrap; in GetTicketKeys()
1543 void SecureContext::SetTicketKeys(const FunctionCallbackInfo<Value>& args) { in SetTicketKeys()
1545 SecureContext* wrap; in SetTicketKeys()
1571 void SecureContext::SetFreeListLength(const FunctionCallbackInfo<Value>& args) { in SetFreeListLength()
1577 void SecureContext::EnableTicketKeyCallback( in EnableTicketKeyCallback()
1579 SecureContext* wrap; in EnableTicketKeyCallback()
1586 int SecureContext::TicketKeyCallback(SSL* ssl, in TicketKeyCallback()
1594 SecureContext* sc = static_cast<SecureContext*>( in TicketKeyCallback()
1674 int SecureContext::TicketCompatibilityCallback(SSL* ssl, in TicketCompatibilityCallback()
1680 SecureContext* sc = static_cast<SecureContext*>( in TicketCompatibilityCallback()
1710 void SecureContext::CtxGetter(const FunctionCallbackInfo<Value>& info) { in CtxGetter()
1711 SecureContext* sc; in CtxGetter()
1719 void SecureContext::GetCertificate(const FunctionCallbackInfo<Value>& args) { in GetCertificate()
1720 SecureContext* wrap; in GetCertificate()
1779 void SSLWrap<Base>::ConfigureSecureContext(SecureContext* sc) { in ConfigureSecureContext()
1810 if (size > SecureContext::kMaxSessionSize) in NewSessionCallback()
2505 SecureContext* sc = Unwrap<SecureContext>(ctx.As<Object>()); in CertCbDone()
2508 w->sni_context_ = BaseObjectPtr<SecureContext>(sc); in CertCbDone()
2548 int SSLWrap<Base>::SetCACerts(SecureContext* sc) { in SetCACerts()
6999 SecureContext::Initialize(env, target); in Initialize()