blob: cd6bcbd25bcd29a86f02cb335c9c6b06e7b6e224 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#ifndef SHA512_INTERNAL_H
#define SHA512_INTERNAL_H
#include <skalibs/sha512.h>
extern void sha512_transform (SHA512Schedule *ctx, unsigned char const *block) ;
#endif
|