diff options
Diffstat (limited to 'src/include/common/sha1.h')
-rw-r--r-- | src/include/common/sha1.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/include/common/sha1.h b/src/include/common/sha1.h new file mode 100644 index 0000000..a475fad --- /dev/null +++ b/src/include/common/sha1.h @@ -0,0 +1,21 @@ +/*------------------------------------------------------------------------- + * + * sha1.h + * Constants related to SHA1. + * + * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * src/include/common/sha1.h + * + *------------------------------------------------------------------------- + */ +#ifndef PG_SHA1_H +#define PG_SHA1_H + +/* Size of result generated by SHA1 computation */ +#define SHA1_DIGEST_LENGTH 20 +/* Block size for SHA1 */ +#define SHA1_BLOCK_SIZE 64 + +#endif /* PG_SHA1_H */ |