aboutsummaryrefslogblamecommitdiffstats
path: root/libblake_blake2s_digest_get_required_input_size.c
blob: c3568228ebf312ca9a658d971b6c24ae74d3ef1e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                           
/* See LICENSE file for copyright and license details. */
#include "common.h"

size_t
libblake_blake2s_digest_get_required_input_size(size_t len)
{
	size_t blocks, rem;
	blocks = len >> 6;
	rem = len & 63;
	if (rem)
		blocks += 1;
	return blocks << 6;
}