Home
last modified time | relevance | path

Searched refs:ca_bio (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/ps/core/communicator/
Dssl_wrapper.cc210 BIO *ca_bio = BIO_new_file(ca_path.c_str(), "r"); in StartCheckCertTime() local
211 MS_EXCEPTION_IF_NULL(ca_bio); in StartCheckCertTime()
212 X509 *ca_cert = PEM_read_bio_X509(ca_bio, nullptr, nullptr, nullptr); in StartCheckCertTime()
213 BIO_free_all(ca_bio); in StartCheckCertTime()
/third_party/mindspore/mindspore/ccsrc/ps/core/
Dcomm_util.cc286 BIO *ca_bio = BIO_new_file(ca_path.c_str(), "r"); in VerifyCommonName() local
287 MS_EXCEPTION_IF_NULL(ca_bio); in VerifyCommonName()
288 X509 *ca_cert = PEM_read_bio_X509(ca_bio, nullptr, nullptr, nullptr); in VerifyCommonName()
305 BIO_free_all(ca_bio); in VerifyCommonName()