skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

sha1-internal.h (273B)


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