摘要: 1、SSL初始化: bool init(string certFile, string privFile) { SSL_load_error_strings (); int r = SSL_library_init (); if (r == 0) { return false; } ssl_ctx = SSL_CTX_new (SSLv23_method ()); if (ssl_ctx == N 阅读全文
posted @ 2019-10-22 11:44 zmlgo 阅读(615) 评论(0) 推荐(0) 编辑