Home | History | Annotate | Download | only in ssl

Lines Matching refs:stack

646  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
648 * for a stack of CAs is to send it to the client). Actually, it doesn't have
651 * \return a ::STACK containing the certs.
715 * Add a file of certs to a stack.
716 * \param stack the stack to add to.
718 * already in the stack will be added.
720 * certs may have been added to \c stack.
723 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
732 oldcmp=sk_X509_NAME_set_cmp_func(stack,xname_cmp);
752 if (sk_X509_NAME_find(stack,xn) >= 0)
755 sk_X509_NAME_push(stack,xn);
770 (void)sk_X509_NAME_set_cmp_func(stack,oldcmp);
776 * Add a directory of certs to a stack.
777 * \param stack the stack to append to.
780 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
783 * certs may have been added to \c stack.
786 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
815 if(!SSL_add_file_cert_subjects_to_stack(stack,buf))