blob: a626fe77dbeb037463b41a286164e31aba4922e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_sha_512_hasher(struct libhashsum_hasher *this)
{
return libhashsum_init_sha2_hasher(this, 64, 512);
}
|