skalibs

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

sha256-internal.h (252B)


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