The KAME files md5.* and sha1.* have the following changelog
Bruce Momjian <bruce@momjian.us>
The KAME files md5.* and sha1.* have the following changelog entry: ---------------------------- revision 1.2 date: 2000/12/04 01:20:38; author: tgl; state: Exp; lines: +18 -18 Eliminate some of the more blatant platform-dependencies ... it builds here now, anyway ... ---------------------------- Which basically changes u_int*_t -> uint*_t, so now it does not compile neither under Debian 2.2 nor under NetBSD 1.5 which is platform independent<B8> all right. Also it replaces $KAME$ with $Id$ which is Bad Thing. PostgreSQL Id should be added as a separate line so the file history could be seen. So here is patch: * changes uint*_t -> uint*. I guess that was the original intention * adds uint64 type to include/c.h because its needed [somebody should check if I did it right] * adds back KAME Id, because KAME is the master repository * removes stupid c++ comments in pgcrypto.c * removes <sys/types.h> from the code, its not needed -- marko Marko Kreen
Files
| Path | Change | +/− |
|---|---|---|
| contrib/pgcrypto/md5.c | modified | +16 −16 |
| contrib/pgcrypto/md5.h | modified | +9 −8 |
| contrib/pgcrypto/pgcrypto.c | modified | +3 −3 |
| contrib/pgcrypto/pgcrypto.h | modified | +1 −3 |
| contrib/pgcrypto/sha1.c | modified | +9 −9 |
| contrib/pgcrypto/sha1.h | modified | +9 −8 |
| src/include/c.h | modified | +4 −1 |