1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
size_t
libar2_encode_params(char *buf, const struct libar2_argon2_parameters *params)
{
size_t off;
#define FMT_AND_ARGS\
"$%s$v=%i$m=%lu,t=%lu,p=%lu$",\
libar2_type_to_string(params->type, LIBAR2_LOWER_CASE),\
(int)params->version,\
(unsigned long int)params->m_cost,\
(unsigned long int)params->t_cost,\
(unsigned long int)params->lanes
if (buf) {
off = (size_t)sprintf(buf, FMT_AND_ARGS);
off += libar2_encode_base64(&buf[off], params->salt, params->saltlen) - 1;
buf[off++] = '$';
buf[off++] = '\0';
} else {
off = (size_t)snprintf(NULL, 0, FMT_AND_ARGS);
off += libar2_encode_base64(NULL, params->salt, params->saltlen) - 1;
off += 2;
}
return off;
}
|