Lines Matching defs:in
5 * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
23 std::string EncodeHex(const uint8_t *in, size_t in_len) {
28 ret += kHexDigits[in[i] >> 4];
29 ret += kHexDigits[in[i] & 0xf];
82 const std::vector<uint8_t> &in) {
93 *out = std::vector<uint8_t>(in.size());
98 !EVP_CipherUpdate(ctx.get(), out->data(), &result_len1, in.data(),
99 in.size()) ||
147 std::vector<uint8_t> in = ct;
148 in.reserve(ct.size() + tag.size());
149 in.insert(in.end(), tag.begin(), tag.end());
154 iv.data(), iv.size(), in.data(), in.size(), aad.data(),
162 static int HexToBIGNUM(bssl::UniquePtr<BIGNUM> *out, const char *in) {
164 int ret = BN_hex2bn(&raw, in);