Module mesalink::libssl::safestack[][src]

Expand description

Implementations of OpenSSL STACK APIs. Please also refer to the header file at mesalink/openssl/safestack.h

Structs

An OpenSSL STACK_OF(X509) object

An OpenSSL STACK_OF(X509_NAME) object

Functions

sk_X509_NAME_free - frees up the sk structure. After this call sk is no longer valid.

sk_X509_NAME_new_null - allocates a new stack of X509_NAME.

sk_X509_NAME_num - returns the number of elements in sk or -1 if sk is NULL..

sk_X509_NAME_push - appends ptr to sk.

sk_X509_NAME_value - returns element idx in sk, where idx starts at zero. If idx is out of range then NULL is returned.

sk_X509_free - frees up the sk structure. After this call sk is no longer valid.

sk_X509_new_null - allocates a new stack of X509.

sk_X509_num - returns the number of elements in sk or -1 if sk is NULL.

sk_X509_push - appends ptr to sk.

sk_X509_value - returns element idx in sk, where idx starts at zero. If idx is out of range then NULL is returned.