sha1.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Common values for SHA-1 algorithms
  4. */
  5. #ifndef _CRYPTO_SHA1_H
  6. #define _CRYPTO_SHA1_H
  7. #include <linux/types.h>
  8. #define SHA1_DIGEST_SIZE 20
  9. #define SHA1_BLOCK_SIZE 64
  10. #define SHA1_H0 0x67452301UL
  11. #define SHA1_H1 0xefcdab89UL
  12. #define SHA1_H2 0x98badcfeUL
  13. #define SHA1_H3 0x10325476UL
  14. #define SHA1_H4 0xc3d2e1f0UL
  15. extern const u8 sha1_zero_message_hash[SHA1_DIGEST_SIZE];
  16. struct sha1_state {
  17. u32 state[SHA1_DIGEST_SIZE / 4];
  18. u64 count;
  19. u8 buffer[SHA1_BLOCK_SIZE];
  20. };
  21. struct shash_desc;
  22. extern int crypto_sha1_update(struct shash_desc *desc, const u8 *data,
  23. unsigned int len);
  24. extern int crypto_sha1_finup(struct shash_desc *desc, const u8 *data,
  25. unsigned int len, u8 *hash);
  26. /*
  27. * An implementation of SHA-1's compression function. Don't use in new code!
  28. * You shouldn't be using SHA-1, and even if you *have* to use SHA-1, this isn't
  29. * the correct way to hash something with SHA-1 (use crypto_shash instead).
  30. */
  31. #define SHA1_DIGEST_WORDS (SHA1_DIGEST_SIZE / 4)
  32. #define SHA1_WORKSPACE_WORDS 16
  33. void sha1_init(__u32 *buf);
  34. void sha1_transform(__u32 *digest, const char *data, __u32 *W);
  35. #endif /* _CRYPTO_SHA1_H */