Searched refs:BLAKE2S_PARAM (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssl/providers/implementations/include/prov/ |
H A D | blake2.h | 43 typedef struct blake2s_param_st BLAKE2S_PARAM; typedef 106 int ossl_blake2s_init(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P); 107 int ossl_blake2s_init_key(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P, 112 void ossl_blake2s_param_init(BLAKE2S_PARAM *P); 113 void ossl_blake2s_param_set_digest_length(BLAKE2S_PARAM *P, uint8_t outlen); 114 void ossl_blake2s_param_set_key_length(BLAKE2S_PARAM *P, uint8_t keylen); 115 void ossl_blake2s_param_set_personal(BLAKE2S_PARAM *P, const uint8_t *personal, 117 void ossl_blake2s_param_set_salt(BLAKE2S_PARAM *P, const uint8_t *salt,
|
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 61 static void blake2s_init_param(BLAKE2S_CTX *S, const BLAKE2S_PARAM *P) in blake2s_init_param() 71 assert(sizeof(BLAKE2S_PARAM) == 32); in blake2s_init_param() 78 void ossl_blake2s_param_init(BLAKE2S_PARAM *P) in ossl_blake2s_param_init() 92 void ossl_blake2s_param_set_digest_length(BLAKE2S_PARAM *P, uint8_t outlen) in ossl_blake2s_param_set_digest_length() 97 void ossl_blake2s_param_set_key_length(BLAKE2S_PARAM *P, uint8_t keylen) in ossl_blake2s_param_set_key_length() 102 void ossl_blake2s_param_set_personal(BLAKE2S_PARAM *P, const uint8_t *personal, in ossl_blake2s_param_set_personal() 109 void ossl_blake2s_param_set_salt(BLAKE2S_PARAM *P, const uint8_t *salt, in ossl_blake2s_param_set_salt() 119 int ossl_blake2s_init(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P) in ossl_blake2s_init() 129 int ossl_blake2s_init_key(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P, in ossl_blake2s_init_key()
|
H A D | blake2_prov.c | 17 BLAKE2S_PARAM P; in ossl_blake2s256_init()
|
/freebsd/crypto/openssl/providers/implementations/macs/ |
H A D | blake2s_mac.c | 12 #define BLAKE2_PARAM BLAKE2S_PARAM
|