blob: 22da9a842e677f8c95ac20e459dcbef1b6efa1f2 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_sha_512_256_hasher(struct libhashsum_hasher *this)
{
return libhashsum_init_sha2_hasher(this, 64, 256);
}
|