sha1.h 585 B

123456789101112131415161718192021
  1. /*-------------------------------------------------------------------------
  2. *
  3. * sha1.h
  4. * Constants related to SHA1.
  5. *
  6. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * src/include/common/sha1.h
  10. *
  11. *-------------------------------------------------------------------------
  12. */
  13. #ifndef PG_SHA1_H
  14. #define PG_SHA1_H
  15. /* Size of result generated by SHA1 computation */
  16. #define SHA1_DIGEST_LENGTH 20
  17. /* Block size for SHA1 */
  18. #define SHA1_BLOCK_SIZE 64
  19. #endif /* PG_SHA1_H */