代码搜索:OpenSSL
找到约 8,687 项符合「OpenSSL」的源代码
代码结果 8,687
www.eeworm.com/read/101042/6259077
pod ssl_get_current_cipher.pod
=pod
=head1 NAME
SSL_get_current_cipher, SSL_get_cipher, SSL_get_cipher_name,
SSL_get_cipher_bits, SSL_get_cipher_version - get SSL_CIPHER of a connection
=head1 SYNOPSIS
#include
www.eeworm.com/read/101042/6259080
pod ssl_write.pod
=pod
=head1 NAME
SSL_read - write bytes to a TLS/SSL connection.
=head1 SYNOPSIS
#include
int SSL_write(SSL *ssl, char *buf, int num);
=head1 DESCRIPTION
SSL_write() writes B
www.eeworm.com/read/101042/6259082
pod ssl_get_error.pod
=pod
=head1 NAME
SSL_get_error - obtain result code for TLS/SSL I/O operation
=head1 SYNOPSIS
#include
int SSL_get_error(SSL *ssl, int ret);
=head1 DESCRIPTION
SSL_get_error()
www.eeworm.com/read/101042/6259083
pod ssl_read.pod
=pod
=head1 NAME
SSL_read - read bytes from a TLS/SSL connection.
=head1 SYNOPSIS
#include
int SSL_read(SSL *ssl, char *buf, int num);
=head1 DESCRIPTION
SSL_read() tries to r
www.eeworm.com/read/101042/6259091
pod ssl_get_peer_certificate.pod
=pod
=head1 NAME
SSL_get_peer_certificate - get the X509 certificate of the peer
=head1 SYNOPSIS
#include
X509 *SSL_get_peer_certificate(SSL *ssl);
=head1 DESCRIPTION
SSL_get_
www.eeworm.com/read/101042/6259092
pod ssl_new.pod
=pod
=head1 NAME
SSL_new - create a new SSL structure for a connection
=head1 SYNOPSIS
#include
SSL *SSL_new(SSL_CTX *ctx);
=head1 DESCRIPTION
SSL_new() creates a new B s
www.eeworm.com/read/101042/6259093
pod ssl_ctx_free.pod
=pod
=head1 NAME
SSL_CTX_free - free an allocated SSL_CTX object
=head1 SYNOPSIS
#include
void SSL_CTX_free(SSL_CTX *ctx);
=head1 DESCRIPTION
SSL_CTX_free() decrements the ref
www.eeworm.com/read/101042/6259096
pod ssl_get_ciphers.pod
=pod
=head1 NAME
SSL_get_ciphers, SSL_get_cipher_list - get list of available SSL_CIPHERs
=head1 SYNOPSIS
#include
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(SSL *ssl);
const char *
www.eeworm.com/read/101042/6259099
pod ssl_set_bio.pod
=pod
=head1 NAME
SSL_set_bio - connect the SSL object with a BIO
=head1 SYNOPSIS
#include
void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
=head1 DESCRIPTION
SSL_set_bio() co
www.eeworm.com/read/101042/6259101
pod ssl_set_fd.pod
=pod
=head1 NAME
SSL_set_fd - connect the SSL object with a file descriptor
=head1 SYNOPSIS
#include
int SSL_set_fd(SSL *ssl, int fd);
int SSL_set_rfd(SSL *ssl, int fd);
int S