Home | History | Annotate | Download | only in apps

Lines Matching defs:in

7  * Redistribution and use in source and binary forms, with or without
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
22 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
30 * nor may "OpenSSL" appear in their names without prior written
36 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
41 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
84 unsigned char *in, size_t inlen);
90 BIO *in = NULL, *out = NULL;
119 if (!strcmp(*argv,"-in"))
257 if(!(in = BIO_new_file(infile, "rb")))
266 in = BIO_new_fp(stdin, BIO_NOCLOSE);
307 if (in)
310 buf_inlen = bio_to_mem(&buf_in, keysize * 10, in);
377 BIO_free(in);
391 BIO_printf(bio_err, "-in file input file\n");
543 unsigned char *in, size_t inlen)
549 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen);
553 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen);
557 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen);
561 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);