Searched refs:encodedlen (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2.c89 const size_t hashlen, char *encoded, const size_t encodedlen,
143 if (encoded && encodedlen) {
144 if (encode_string(encoded, encodedlen, &context, type) != ARGON2_OK) {
146 sodium_memzero(encoded, encodedlen);
163 const size_t encodedlen)
166 NULL, hashlen, encoded, encodedlen, Argon2_i);
184 const size_t encodedlen)
187 NULL, hashlen, encoded, encodedlen, Argon2_id);
86 argon2_hash(const uint32_t t_cost, const uint32_t m_cost, const uint32_t parallelism, const void *pwd, const size_t pwdlen, const void *salt, const size_t saltlen, void *hash, const size_t hashlen, char *encoded, const size_t encodedlen, argon2_type type) argument
159 argon2i_hash_encoded(const uint32_t t_cost, const uint32_t m_cost, const uint32_t parallelism, const void *pwd, const size_t pwdlen, const void *salt, const size_t saltlen, const size_t hashlen, char *encoded, const size_t encodedlen) argument
180 argon2id_hash_encoded(const uint32_t t_cost, const uint32_t m_cost, const uint32_t parallelism, const void *pwd, const size_t pwdlen, const void *salt, const size_t saltlen, const size_t hashlen, char *encoded, const size_t encodedlen) argument
H A Dargon2.h208 * @param encodedlen Size of the buffer (thus max size of the encoded hash)
216 char *encoded, const size_t encodedlen);
229 * @param encodedlen Size of the buffer (thus max size of the encoded hash)
237 char *encoded, const size_t encodedlen);
282 const size_t encodedlen, argon2_type type);
/freebsd-13-stable/crypto/openssl/ssl/statem/
H A Dextensions_clnt.c589 size_t encodedlen; local
610 encodedlen = EVP_PKEY_get1_tls_encodedpoint(key_share_key,
612 if (encodedlen == 0) {
619 || !WPACKET_sub_memcpy_u16(pkt, encoded_point, encodedlen)) {
H A Dstatem_srvr.c2495 size_t encodedlen = 0; local
2626 encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
2628 if (encodedlen == 0) {
2756 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {

Completed in 124 milliseconds