summaryrefslogtreecommitdiff
path: root/src/libstdcrypto/sha512_init.c
blob: 33b1d7c3bb6390f715d7770125e4f91ad1557c6d (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <skalibs/sha512.h>

void sha512_init (SHA512Schedule *ctx)
{
  SHA512Schedule empty = SHA512_INIT() ;
  *ctx = empty ;
}