Home | History | Annotate | Download | only in engine

Lines Matching defs:in

8  * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
60 * ECDH support in OpenSSL originally developed by
85 * longer automatic in ENGINE_load_builtin_engines(). */
241 const unsigned char *in, size_t inl)
246 RC4(&test(ctx)->ks,inl,in,out);
374 BIO *in;
377 in = BIO_new_file(key_id, "r");
378 if (!in)
380 key = PEM_read_bio_PrivateKey(in, NULL, 0, NULL);
381 BIO_free(in);