Searched refs:construct_hkdf_params (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssl/test/ |
H A D | evp_kdf_test.c | 193 static OSSL_PARAM *construct_hkdf_params(char *digest, char *key, in construct_hkdf_params() function 230 params = construct_hkdf_params("sha256", "secret", 6, "salt", "label"); in test_kdf_hkdf() 251 if (!TEST_ptr(params = construct_hkdf_params( in do_kdf_hkdf_gettables() 308 params = construct_hkdf_params("blah", "secret", 6, "salt", "label"); in test_kdf_hkdf_invalid_digest() 409 params = construct_hkdf_params("sha256", "secret", 6, "salt", "label"); in test_kdf_hkdf_zero_output_size() 429 params = construct_hkdf_params("sha256", "", 0, "salt", "label"); in test_kdf_hkdf_empty_key() 447 params = construct_hkdf_params("sha256", "1", 1, "salt", "label"); in test_kdf_hkdf_1byte_key() 465 params = construct_hkdf_params("sha256", "secret", 6, "", "label"); in test_kdf_hkdf_empty_salt()
|