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

#include <skalibs/sha256.h>

void sha256_init (SHA256Schedule *ctx)
{
  SHA256Schedule empty = SHA256_INIT() ;
  *ctx = empty ;
}