Home
last modified time | relevance | path

Searched refs:iv_buf (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/crypto/
Dcrypto_cipher.cc478 const ArrayBufferOrViewContents<unsigned char>& iv_buf, in Init() argument
489 const bool has_iv = iv_buf.size() > 0; in Init()
500 static_cast<int>(iv_buf.size()) != expected_iv_len) { in Init()
509 if (iv_buf.size() > 12) in Init()
518 iv_buf.data(), in Init()
519 iv_buf.size(), in Init()
540 ArrayBufferOrViewContents<unsigned char> iv_buf( in Init() local
543 if (UNLIKELY(!iv_buf.CheckSizeInt32())) in Init()
556 cipher->InitIv(*cipher_type, key_buf, iv_buf, auth_tag_len); in Init()
Dcrypto_cipher.h58 const ArrayBufferOrViewContents<unsigned char>& iv_buf,