Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
SSL_CTX_use_certificate, SSL_CTX_use_certificate_ASN1, SSL_CTX_use_certificate_file, SSL_use_certificate, SSL_use_certificate_ASN1, SSL_use_certificate_chain_file, SSL_use_certificate_file, SSL_CTX_use_certificate_chain_file, SSL_CTX_use_certificate_chain_mem, SSL_CTX_use_PrivateKey, SSL_CTX_use_PrivateKey_ASN1, SSL_CTX_use_PrivateKey_file, SSL_CTX_use_RSAPrivateKey, SSL_CTX_use_RSAPrivateKey_ASN1, SSL_CTX_use_RSAPrivateKey_file, SSL_use_PrivateKey_file, SSL_use_PrivateKey_ASN1, SSL_use_PrivateKey, SSL_use_RSAPrivateKey, SSL_use_RSAPrivateKey_ASN1, SSL_use_RSAPrivateKey_file, SSL_CTX_check_private_key, SSL_check_private_key — load certificate and key dataSYNOPSIS
#include <openssl/ssl.h>SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, unsigned char *d);
SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type);
SSL_use_certificate(SSL *ssl, X509 *x);
SSL_use_certificate_ASN1(SSL *ssl, unsigned char *d, int len);
SSL_use_certificate_chain_file(SSL *ssl, const char *file);
SSL_use_certificate_file(SSL *ssl, const char *file, int type);
SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file);
SSL_CTX_use_certificate_chain_mem(SSL_CTX *ctx, void *buf, int len);
SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, unsigned char *d, long len);
SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type);
SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, unsigned char *d, long len);
SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type);
SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, unsigned char *d, long len);
SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type);
SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
SSL_use_RSAPrivateKey_ASN1(SSL *ssl, const unsigned char *d, long len);
SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type);
SSL_CTX_check_private_key(const SSL_CTX *ctx);
SSL_check_private_key(const SSL *ssl);