Lines Matching defs:in
5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
65 void aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
70 aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
74 CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
77 CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
83 AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
86 aes_cbc_encrypt_internal(in, out, len, key, ivec, enc);
93 * 128bit block we have used is contained in *num;
97 AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length,
100 CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
107 AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length,
110 CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
116 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length,
119 CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
125 AES_ctr128_encrypt(const unsigned char *in, unsigned char *out,
129 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
135 AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
139 AES_encrypt(in, out, key);
141 AES_decrypt(in, out, key);
146 AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length,
149 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
156 const unsigned char *in, unsigned int inlen)
165 memmove(out + 8, in, inlen);
192 const unsigned char *in, unsigned int inlen)
202 memcpy(A, in, 8);
203 memmove(out, in + 8, inlen);