You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 line
227 B

  1. #ifndef SHA2_H
  2. #define SHA2_H
  3. int sha384(unsigned char *out, const unsigned char *in,
  4. unsigned long long inlen);
  5. int sha512(unsigned char *out, const unsigned char *in,
  6. unsigned long long inlen);
  7. #endif