Lines Matching defs:in

13  * apply to all code found in this distribution, be it the RC4, RSA,
18 * Copyright remains Eric Young's, and as such any Copyright notices in
20 * If this package is used in a product, Eric Young should be given attribution
22 * This can be in the form of a textual message at program startup or
23 * in documentation (online or textual) provided with the package.
25 * Redistribution and use in source and binary forms, with or without
30 * 2. Redistributions in binary form must reproduce the above copyright
31 * notice, this list of conditions and the following disclaimer in the
63 * Redistribution and use in source and binary forms, with or without
70 * 2. Redistributions in binary form must reproduce the above copyright
71 * notice, this list of conditions and the following disclaimer in
78 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
86 * nor may "OpenSSL" appear in their names without prior written
92 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
115 * ECC cipher suite support in OpenSSL originally developed by
377 * as it is initially created in SSL_CTX_new; but the earlier code
382 * in SSL_CTX_new).
500 * Anything non-default in "param" should overwrite anything in the ctx.
572 if (s->type == SSL_ST_CONNECT) { /* we are in the client */
630 BIO *in;
637 in = BIO_new(BIO_s_file_internal());
639 if ((sk == NULL) || (in == NULL)) {
644 if (!BIO_read_filename(in, file))
648 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
679 if (in != NULL)
680 BIO_free(in);
692 * \param file the file to add from. All certs in this file that are not
693 * already in the stack will be added.
694 * \return 1 for success, 0 for failure. Note that in the case of failure some
701 BIO *in;
709 in = BIO_new(BIO_s_file_internal());
711 if (in == NULL) {
717 if (!BIO_read_filename(in, file))
721 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
740 if (in != NULL)
741 BIO_free(in);
753 * \param dir the directory to append from. All files in this directory will be
755 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
757 * \return 1 for success, 0 for failure. Note that in the case of failure some