Home
last modified time | relevance | path

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

/third_party/node/src/crypto/
Dcrypto_cipher.cc107 int check_len = args[2].As<Int32>()->Value(); in GetCipherInfo() local
108 if (!EVP_CIPHER_CTX_set_key_length(ctx.get(), check_len)) in GetCipherInfo()
110 key_length = check_len; in GetCipherInfo()
114 int check_len = args[3].As<Int32>()->Value(); in GetCipherInfo() local
121 if (check_len < 7 || check_len > 13) in GetCipherInfo()
130 check_len, in GetCipherInfo()
136 if (check_len != iv_length) in GetCipherInfo()
139 iv_length = check_len; in GetCipherInfo()
Dcrypto_ec.cc672 size_t check_len = EC_POINT_point2oct( in EC_Raw_Export() local
674 if (check_len == 0) in EC_Raw_Export()
677 CHECK_EQ(len, check_len); in EC_Raw_Export()