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
119 const std::vector<uint8_t> *in, *out;
121 in = &plaintext;
124 in = &ciphertext;
153 std::vector<uint8_t> result(in->size());
154 if (in->size() != out->size()) {
155 t->PrintLine("Input/output size mismatch (%u vs %u).", (unsigned)in->size(),
160 // parameters are NULL, so it is important to skip the |in| and |aad|
174 for (size_t i = 0; i < in->size(); i++) {
175 uint8_t c = (*in)[i];
184 } else if (!in->empty() &&
186 in->data(), in->size())) {