Lines Matching defs:in
11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * Redistribution and use in source and binary forms, with or without
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
84 * nor may "OpenSSL" appear in their names without prior written
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
113 * ECC cipher suite support in OpenSSL originally developed by
387 * (which cannot really happen, as it is initially created in
393 * initialization in SSL_CTX_new).
517 /* Anything non-default in "param" should overwrite anything in the
593 { /* we are in the client */
654 BIO *in;
661 in=BIO_new(BIO_s_file_internal());
663 if ((sk == NULL) || (in == NULL))
669 if (!BIO_read_filename(in,file))
674 if (PEM_read_bio_X509(in,&x,NULL,NULL) == NULL)
705 if (in != NULL) BIO_free(in);
716 * \param file the file to add from. All certs in this file that are not
717 * already in the stack will be added.
718 * \return 1 for success, 0 for failure. Note that in the case of failure some
725 BIO *in;
733 in=BIO_new(BIO_s_file_internal());
735 if (in == NULL)
741 if (!BIO_read_filename(in,file))
746 if (PEM_read_bio_X509(in,&x,NULL,NULL) == NULL)
764 if(in != NULL)
765 BIO_free(in);
777 * \param dir the directory to append from. All files in this directory will be
779 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
781 * \return 1 for success, 0 for failure. Note that in the case of failure some