aboutsummaryrefslogtreecommitdiffstats
path: root/libar2_encode_params.c
blob: cdf634ad877a508e47fbf700a0ff64c40f633079 (plain) (blame)
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=%ju,t=%ju,p=%ju$",\
	libar2_type_to_string(params->type, LIBAR2_LOWER_CASE),\
	(int)params->version,\
	(uintmax_t)params->m_cost,\
	(uintmax_t)params->t_cost,\
	(uintmax_t)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;
}