Lines Matching full:stack
645 * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
647 * for a stack of CAs is to send it to the client). Actually, it doesn't have
650 * \return a ::STACK containing the certs.
714 * Add a file of certs to a stack.
715 * \param stack the stack to add to.
717 * already in the stack will be added.
719 * certs may have been added to \c stack.
722 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
731 oldcmp=sk_X509_NAME_set_cmp_func(stack,xname_cmp);
751 if (sk_X509_NAME_find(stack,xn) >= 0)
754 sk_X509_NAME_push(stack,xn);
769 (void)sk_X509_NAME_set_cmp_func(stack,oldcmp);
775 * Add a directory of certs to a stack.
776 * \param stack the stack to append to.
779 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
782 * certs may have been added to \c stack.
785 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
814 if(!SSL_add_file_cert_subjects_to_stack(stack,buf))