summaryrefslogtreecommitdiff
path: root/pkgtools/digest
AgeCommit message (Collapse)AuthorFilesLines
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-03-03Just define PKGNAME and use it.obache1-4/+2
2013-07-20Use Mt for email addresses.wiz1-2/+2
2013-01-03Regen.dholland1-129/+117
2013-01-03Remove configure test for vprintf, which wasn't even being used, anddholland7-86/+17
configure tests for memset/memcpy, which are standard and haven't needed checking in a long time. This makes the configure script tolerate injection of -Werror. Fix signed/unsigned mismatches in the sha2 and whirlpool code. This package now passes -Wall with gcc45. Bump the package version to 20121220, which is when I made these changes.
2012-09-11"user-destdir" is default these daysasau1-2/+1
2011-11-04Fix segmentation fault of digest(1) on Linux when directorycheusov5-2818/+1652
is passed as an argument or when read error occurs. Update version to 20111104.
2010-01-23Exactly include unistd.h for size_t (at least, need for Haiku).obache5-4/+24
2009-05-19Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENTwiz1-2/+2
block). Uncomment some commented out LICENSE lines while here.
2009-05-09Define int64_t if missing. Should fix PR 41396.joerg3-1/+122
2009-04-09Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions.joerg1-2/+1
2009-02-09Regen with autoconf 2.63. The endian macro issues on Mac OS X have beenjoerg2-1150/+1613
addressed according to PR 38625.
2008-05-11Bump version to 20080510.joerg2-11/+11
2008-05-11As workaround for PR 38625, rebuild with autoconf 2.61.joerg1-1477/+1060
2008-05-09Fix a bug in the SHA512 implementation that would be triggered if thejoerg1-1/+1
last block has exactly the length of a short fragment. This happened incidently with two files in the NetBSD 4.0 release.
2008-05-09digest-20080509:joerg4-1072/+1496
The tiger hash needs to run at least once through the update function, even for empty input. The fix is different from the patch in PR 36565.
2008-02-26NO_MTREE is the default nowawadays.joerg1-10/+2
Do not force use of a native compiler, we don't build digest during bootstrap any longer. Do not skip the pkgtools version check for the same reason. When building this package using DESTDIR, it might actually need the newer tools.
2007-11-11Added commented-out LICENSE=something.martti1-1/+2
2007-10-07fix obsolete URLs for www.NetBSD.orgkano1-2/+2
close PR pkg/37071 reviewd by xtraeme@
2007-09-21Fully ANSIfy and use size_t and uint32_t in places where u_int was usedjoerg16-149/+91
before. This fixes the build on QNX, where u_int is not exposed by the current set of headers. Make the prototypes of the crypto functions consistent.
2007-09-14Don't use u_char when uint8_t are meant. Don't mess with __attribute__,joerg11-66/+70
conditionally use it in the only place it is used. This should fix problems on QNX reported by Sean Boudreau.
2007-08-03Bump version to 20070803 after fixing a crash when generating Tiger hashestnn2-11/+11
2007-08-03Allocate enough storage space to hold a tiger hash. Corrects atnn1-3/+3
segfault caused by writing past the end of the buffer. XXX how do I bump the version of this package?
2007-08-02Include inttypes.h if it exists. Fixes issues on OSF/1 as reportedjoerg6-4/+27
by tnn@.
2007-07-27As reported by tnn@, the old approach to find the byte orderjoerg7-290/+278
doesn't work on HP-UX/Itanium. Use the standard approach using AC_C_BIGENDIAN. Tested by myself on i386, he@ on SPARC and tnn@ on HP-UX.
2007-07-08Include stdint.h to use integer types such as uint32_t.minskim5-4/+24
2007-07-03Make pkgtools/digest cross-compilation ready and actually improvejoerg21-3799/+2804
portability somewhat: - consistently use POSIX uint{8,16,32,64}_t throughout the code. - asssume for now that the compiler supports ULL as suffix - use AC_TYPE_UINT{8,16,32,64}_T instead of bits.c to compute possible replacement types. Bump to 20070703. Tested by Thorsten Glaser on Interix and tnn@ on Solaris.
2007-07-03Override CHECK_PERMS for checkperms and its dependency digest.joerg1-2/+5
This allows making it a real dependency for bulk builds.
2007-03-12Sync config.{guess,sub} with mk/gnu-configure.joerg2-361/+481
2006-11-02DESTDIR support.joerg1-2/+3
2006-08-29Revert libncompat usage and kill the use of snprintf in whirlpool andjoerg6-66/+57
tiger instead. Also kill bogus NULL pointer handling in both algorithms: passing null pointers as buffers (when len != 0) or context is a serious programming error and should result in a segfault. Bump version to 20060826. OK agc@
2006-08-26include libnbcompat on IRIX 5 in order to provide snprintf()schwarz1-1/+5
2006-07-18USE_DIGEST is no more.jlam1-3/+2
2006-07-14Set NO_MTREE since this package will be used during bootstrap and wejlam1-1/+2
don't need to generate the whole directory hierarchy for it.
2006-03-02Update the digest package to 20060302.agc5-45/+44
Apply Tyler Retzlaff's patches from PR 32323 to make this compile with gcc4.
2006-03-01Update AC_C___ATTRIBUTE__ macro with newer version on Heimdal,joerg2-19/+7
the old one is just bogus and depends on GCC extensions. Unbreaks GCC 4 build.
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
2005-08-21include digest-types.h so the various {u,}intNN_t types are defined.grant1-0/+2
fixes build on BSD/OS. from T. M. Pederson in PR pkg/31024.
2005-07-31Update digest to version 20050731:agc4-410/+833
Pull in a patch from Vsevolod Stakhov via FreeBSD: Because that the 55-bytes input-message becomes just 64 bytes block after `the message terminator code(0x80)' and `size-field(8-bytes field)' are added. Perhaps, I think the block of a lot of one be made at this time. Fixes PR 30857
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Include stdint.h because uint32_t is used. Makes the package build onminskim1-0/+7
Linux again.
2005-03-23fix a memory leak.yamt1-2/+4
2005-03-23Update digest to version 20050323. The whirlpool digest algorithm wasagc9-24/+2023
added in this version, taken from the reference code from the NESSIE project. Passes regression test suite on NetBSD/{i386,sparc64} and also on SunOS 5.9 sparc (thanks, Jonathan).
2005-03-22Bump date for tiger. > -> \*[Gt]wiz1-3/+3
2005-03-22Add support for the tiger algorithm to digest.agc9-13/+880
Bump version to 20050310. The cabal known as the cryptographers might like to have a look at the first two results in test 6 of the regression tests.
2005-01-06Don't "cp -p" for *source* files. Builds are usually done as an unprivilegedtv1-2/+2
user, so it's not nice to try to use an option that will try to chown if the repository isn't owned by the builder. (Some OS's do in fact cause an error when the chown in "cp -p" fails.)
2004-12-15update config.{sub,guess} to fix build on newer platforms such asgrant2-235/+476
DragonFly. part of PR pkg/28579 from Todd Willey. thanks!
2004-10-14Make MAINTAINER, HOMEPAGE, and COMMENT use ?= instead of = so that theatatat1-4/+4
rdigest package works. I have no idea why I never committed this before.
2004-03-28add missing DESCR to DISTFILES.grant1-2/+2
2004-03-28sync with ../DESCRgrant1-5/+2