Lines Matching defs:in

10  * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
60 * Redistribution and use in source and binary forms, with or without
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in
75 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
83 * nor may "OpenSSL" appear in their names without prior written
89 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
112 * ECC cipher suite support in OpenSSL originally developed by
469 /* Anything non-default in "param" should overwrite anything in the ctx. */
585 BIO *in;
591 in = BIO_new(BIO_s_file());
593 if (sk == NULL || in == NULL) {
598 if (!BIO_read_filename(in, file)) {
603 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) {
638 BIO_free(in);
649 * \param file the file to add from. All certs in this file that are not
650 * already in the stack will be added.
651 * \return 1 for success, 0 for failure. Note that in the case of failure some
655 BIO *in;
662 in = BIO_new(BIO_s_file());
664 if (in == NULL) {
670 if (!BIO_read_filename(in, file)) {
675 if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) {
700 BIO_free(in);
711 * \param dir the directory to append from. All files in this directory will be
713 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will
715 * \return 1 for success, 0 for failure. Note that in the case of failure some
825 /* Don't leave errors in the queue */