blob: 000662895bcbdb0554065d331d68924ad5271889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#ifndef SHA1_INTERNAL_H
#define SHA1_INTERNAL_H
#include <stdint.h>
#include <skalibs/sha1.h>
extern void sha1_feed (SHA1Schedule *, unsigned char) ;
extern void sha1_transform (uint32_t * /* 5 uint32s */, uint32_t const * /* 16 uint32s */) ;
#endif
|