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
67 /* Encrypt/Decrypt a buffer based on password and algor, result in a
72 int passlen, unsigned char *in, int inlen, unsigned char **data,
92 EVP_CipherUpdate(&ctx, out, &i, in, inlen);
155 unsigned char *in = NULL;
161 inlen = ASN1_item_i2d(obj, &in, it);
162 if (!in) {
166 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data,
169 OPENSSL_free(in);
172 if (zbuf) OPENSSL_cleanse(in, inlen);
173 OPENSSL_free(in);