blob: a01d75cb196900a35ae9b7efde9450f556313b84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#ifndef SHA256_INTERNAL_H
#define SHA256_INTERNAL_H
#include <stdint.h>
#include <skalibs/sha256.h>
extern void sha256_feed (SHA256Schedule *, unsigned char) ;
extern void sha256_transform (uint32_t *, uint32_t const *) ;
#endif
|