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

#include <skalibs/sha256.h>

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