aboutsummaryrefslogtreecommitdiff
path: root/lib/libmd/rmd160c.c
Commit message (Collapse)AuthorAgeFilesLines
* libmd: Always erase context in _Final method, and when doingXin LI2018-07-201-4/+2
| | | | | | | | | | | | | it, consistently use explicit_bzero(). Update manual pages to match the behavior. Reviewed by: pfg, allanjude, jmg MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D16316 Notes: svn path=/head/; revision=336539
* Unbreak MIPS build following rev. 282726Thomas Quinot2015-05-111-0/+6
| | | | | | | | | | | Introduce further adjustments to the renaming of libmd symbols: make sure that we do not generate dangling weak aliases, as this causes build failures on MIPS. Tested by: sbruno Notes: svn path=/head/; revision=282774
* Ensure libmd symbols do not clash with libcryptoThomas Quinot2015-05-101-0/+13
| | | | | | | | | | | | | | | | Add a prefix to all symbols in libmd to avoid incompatibilites with same-named, but not binary compatible, symbols from libcrypto. Also introduce Weak aliases to avoid the need to rebuild dependent binaries and a major version bump. PR: 199119 Differential Revision: D2216 Reviewed by: roberto, delphij MFC after: 2 weeks Notes: svn path=/head/; revision=282726
* Revert r274772: it is not valid on MIPSEd Maste2014-11-251-1/+1
| | | | | | | Reported by: sbruno Notes: svn path=/head/; revision=275004
* Use canonical __PIC__ flagEd Maste2014-11-211-1/+1
| | | | | | | | | | | It is automatically set when -fPIC is passed to the compiler. Reviewed by: dim, kib Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D1179 Notes: svn path=/head/; revision=274772
* Fix an 11 year old mistake: Let the hash functions take a void* insteadPoul-Henning Kamp2006-01-171-2/+3
| | | | | | | of unsigned char* argument. Notes: svn path=/head/; revision=154479
* Remove 'register' keyword.David E. O'Brien2002-03-211-5/+5
| | | | Notes: svn path=/head/; revision=92913
* add __FBSDID()s to libmdMatthew Dillon2001-09-301-2/+3
| | | | Notes: svn path=/head/; revision=84211
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* No, this isn't what I submitted. Seems like the patch I sentMatt Jacob1999-02-271-2/+2
| | | | | | | was ignored and an incorrect hand edit was used instead. Notes: svn path=/head/; revision=44310
* Fixes for Alpha.Garrett Wollman1999-02-261-1/+2
| | | | | | | Submitted by: mjacob Notes: svn path=/head/; revision=44304
* Add Eric Young's RIPEMD160 implementation as well, in case SHA-1Garrett Wollman1999-02-261-0/+544
should prove weak. Also fix a few problems with the SHA-1 build. Notes: svn path=/head/; revision=44301