Lines Matching +defs:key +defs:P

92 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_le…  in blake2b_param_set_digest_length()
98 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout()
104 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth ) in blake2b_param_set_max_depth()
110 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_lengt… in blake2b_param_set_leaf_length()
116 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offse… in blake2b_param_set_node_offset()
122 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth()
128 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_leng… in blake2b_param_set_inner_length()
134 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTB… in blake2b_param_set_salt()
140 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE… in blake2b_param_set_personal()
157 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
175 blake2b_param P[1]; in blake2b_init() local
194 int blake2b_init_key( blake2b_state *S, const uint8_t outlen, const void *key, const uint8_t keylen… in blake2b_init_key()
196 blake2b_param P[1]; in blake2b_init_key() local
353 int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t in… in blake2b()
394 uint8_t key[BLAKE2B_KEYBYTES]; in main() local