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