• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/

Lines Matching refs:SSL_CTX

333  * in SSL_CTX. */
354 typedef struct ssl_ctx_st SSL_CTX;
372 long (*ssl_ctx_ctrl)(SSL_CTX *ctx,int cmd,long larg,void *parg);
383 long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)());
550 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
565 /* This callback type is used inside SSL_CTX, SSL, and in the functions that set
729 struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx);
912 SSL_CTX *ctx;
1162 BIO *BIO_new_ssl(SSL_CTX *ctx,int client);
1163 BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
1164 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
1170 int SSL_CTX_set_cipher_list(SSL_CTX *,const char *str);
1171 SSL_CTX *SSL_CTX_new(SSL_METHOD *meth);
1172 void SSL_CTX_free(SSL_CTX *);
1173 long SSL_CTX_set_timeout(SSL_CTX *ctx,long t);
1174 long SSL_CTX_get_timeout(SSL_CTX *ctx);
1175 X509_STORE *SSL_CTX_get_cert_store(SSL_CTX *);
1176 void SSL_CTX_set_cert_store(SSL_CTX *,X509_STORE *);
1180 void SSL_CTX_flush_sessions(SSL_CTX *ctx,long tm);
1225 int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type);
1226 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type);
1227 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type);
1228 int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file); /* PEM type */
1264 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
1265 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
1266 int SSL_CTX_set_generate_session_id(SSL_CTX *, GEN_SESSION_CB);
1278 int SSL_CTX_get_verify_mode(SSL_CTX *ctx);
1279 int SSL_CTX_get_verify_depth(SSL_CTX *ctx);
1280 int (*SSL_CTX_get_verify_callback(SSL_CTX *ctx))(int,X509_STORE_CTX *);
1281 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,
1283 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth);
1284 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg);
1286 int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
1288 int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, unsigned char *d, long len);
1289 int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
1290 int SSL_CTX_use_PrivateKey_ASN1(int pk,SSL_CTX *ctx,
1292 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
1293 int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, unsigned char *d);
1295 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb);
1296 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u);
1298 int SSL_CTX_check_private_key(SSL_CTX *ctx);
1301 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
1304 SSL * SSL_new(SSL_CTX *ctx);
1308 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose);
1310 int SSL_CTX_set_trust(SSL_CTX *s, int trust);
1321 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg);
1322 long SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)());
1328 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth);
1361 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *list);
1363 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(SSL_CTX *s);
1365 int SSL_CTX_add_client_CA(SSL_CTX *ctx,X509 *x);
1382 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode);
1383 int SSL_CTX_get_quiet_shutdown(SSL_CTX *ctx);
1389 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
1390 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
1395 SSL_CTX *SSL_get_SSL_CTX(SSL *ssl);
1414 int SSL_CTX_set_ex_data(SSL_CTX *ssl,int idx,void *data);
1415 void *SSL_CTX_get_ex_data(SSL_CTX *ssl,int idx);
1447 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,
1456 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,