diff options
Diffstat (limited to 'src/include/common/sha1.h')
-rw-r--r-- | src/include/common/sha1.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/common/sha1.h b/src/include/common/sha1.h new file mode 100644 index 00000000000..a61bc47deda --- /dev/null +++ b/src/include/common/sha1.h @@ -0,0 +1,19 @@ +/*------------------------------------------------------------------------- + * + * sha1.h + * Constants related to SHA1. + * + * Portions Copyright (c) 1996-2020, 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 + +#endif /* PG_SHA1_H */ |