Searched refs:u64_value (Results 1 – 3 of 3) sorted by relevance
220 uint64_t u64_value; in kdf_scrypt_set_ctx_params() local235 if (!OSSL_PARAM_get_uint64(p, &u64_value) in kdf_scrypt_set_ctx_params()236 || u64_value <= 1 in kdf_scrypt_set_ctx_params()237 || !is_power_of_two(u64_value)) in kdf_scrypt_set_ctx_params()239 ctx->N = u64_value; in kdf_scrypt_set_ctx_params()244 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()246 ctx->r = u64_value; in kdf_scrypt_set_ctx_params()251 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()253 ctx->p = u64_value; in kdf_scrypt_set_ctx_params()258 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()[all …]
22 QLOG_U64("u64_value", 123)
203 if (!(value > 1 && is_power_of_two(u64_value)))
Completed in 6 milliseconds