Searched refs:BIOPointer (Results 1 – 6 of 6) sorted by relevance
/third_party/node/src/ |
D | node_crypto_common.cc | 307 Local<Value> ToV8Value(Environment* env, const BIOPointer& bio) { in ToV8Value() 487 bool SafeX509ExtPrint(const BIOPointer& out, X509_EXTENSION* ext) { in SafeX509ExtPrint() 562 static inline void PrintAltName(const BIOPointer& out, const char* name, in PrintAltName() 606 static inline void PrintLatin1AltName(const BIOPointer& out, in PrintLatin1AltName() 613 static inline void PrintUtf8AltName(const BIOPointer& out, in PrintUtf8AltName() 623 static bool PrintGeneralName(const BIOPointer& out, const GENERAL_NAME* gen) { in PrintGeneralName() 744 bool SafeX509SubjectAltNamePrint(const BIOPointer& out, X509_EXTENSION* ext) { in SafeX509SubjectAltNamePrint() 773 bool SafeX509InfoAccessPrint(const BIOPointer& out, X509_EXTENSION* ext) { in SafeX509InfoAccessPrint() 812 const BIOPointer& bio, in GetSubjectAltNameString() 831 const BIOPointer& bio, in GetInfoAccessString() [all …]
|
D | node_crypto_bio.cc | 34 BIOPointer NodeBIO::New(Environment* env) { in New() 35 BIOPointer bio(BIO_new(GetMethod())); in New() 42 BIOPointer NodeBIO::NewFixed(const char* data, size_t len, Environment* env) { in NewFixed() 43 BIOPointer bio = New(env); in NewFixed() 49 return BIOPointer(); in NewFixed()
|
D | node_crypto_bio.h | 47 static BIOPointer New(Environment* env = nullptr); 51 static BIOPointer NewFixed(const char* data, size_t len,
|
D | tls_wrap.h | 215 crypto::BIOPointer bio_trace_;
|
D | node_crypto.cc | 702 static BIOPointer LoadBIO(Environment* env, Local<Value> v) { in LoadBIO() 741 BIOPointer bio(LoadBIO(env, args[0])); in SetKey() 905 BIOPointer&& in, in SSL_CTX_use_certificate_chain() 964 BIOPointer bio(LoadBIO(env, args[0])); in SetCert() 1052 BIOPointer bio(LoadBIO(env, args[0])); in AddCACert() 1082 BIOPointer bio(LoadBIO(env, args[0])); in AddCRL() 1110 BIOPointer bio(BIO_new_file(file, "r")); in AddCertsFromFile() 1253 BIOPointer bio(LoadBIO(env, args[0])); in SetDHParam() 1374 BIOPointer bio(BIO_new(BIO_s_mem())); in SetSessionIdContext() 1424 BIOPointer in(LoadBIO(env, args[0])); in LoadPKCS12() [all …]
|
D | node_crypto.h | 65 using BIOPointer = DeleteFnPtr<BIO, BIO_free_all>; variable
|