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