blob: cbeb5bb783c8d520225002f1562cb28579cd1d10 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_sha_224_hasher(struct libhashsum_hasher *this)
{
return libhashsum_init_sha2_hasher(this, 32, 224);
}
|