sha512_i.h 591 B

12345678910111213141516171819202122232425
  1. /*
  2. * SHA-512 internal definitions
  3. * Copyright (c) 2015, Pali Rohár <pali.rohar@gmail.com>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef SHA512_I_H
  9. #define SHA512_I_H
  10. #define SHA512_BLOCK_SIZE 128
  11. struct sha512_state {
  12. u64 length, state[8];
  13. u32 curlen;
  14. u8 buf[SHA512_BLOCK_SIZE];
  15. };
  16. void sha512_init(struct sha512_state *md);
  17. int sha512_process(struct sha512_state *md, const unsigned char *in,
  18. unsigned long inlen);
  19. int sha512_done(struct sha512_state *md, unsigned char *out);
  20. #endif /* SHA512_I_H */