Searched refs:u64_value (Results 1 – 1 of 1) sorted by relevance
189 uint64_t u64_value; in kdf_scrypt_set_ctx_params() local204 if (!OSSL_PARAM_get_uint64(p, &u64_value) in kdf_scrypt_set_ctx_params()205 || u64_value <= 1 in kdf_scrypt_set_ctx_params()206 || !is_power_of_two(u64_value)) in kdf_scrypt_set_ctx_params()208 ctx->N = u64_value; in kdf_scrypt_set_ctx_params()213 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()215 ctx->r = u64_value; in kdf_scrypt_set_ctx_params()220 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()222 ctx->p = u64_value; in kdf_scrypt_set_ctx_params()227 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()[all …]