Overview
Comment: | Replace a non-free implementation of SHA1 hash from RFC-3174 by a free one from RFC-6234. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | rfc-6234 |
Files: | files | file ages | folders |
SHA1: |
5504b5dd475423fe5d586e3591625caf |
User & Date: | sergei on 2019-11-15 08:52:17 |
Other Links: | branch diff | manifest | tags |
Context
2019-11-15
| ||
14:59 | Include stdint or inttypes depending on platform Closed-Leaf check-in: 0d816bdcfc user: rkeene tags: rfc-6234 | |
08:52 | Replace a non-free implementation of SHA1 hash from RFC-3174 by a free one from RFC-6234. check-in: 5504b5dd47 user: sergei tags: rfc-6234 | |
2019-11-13
| ||
14:59 | Corrected license check-in: 480596d8cb user: rkeene tags: trunk | |
Changes
Modified LICENSE from [6315f16a70] to [71e9e37094].
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - - - + + + | the X Consortium, and are licensed under the X11 license: install.sh The following files in this directory are the intellectual property of RSA Data Security, Inc., and are licensed under terms specified therein: md5.h, md5.c These files are "derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm". |
︙ |
Modified Makefile.in from [abdaf2d437] to [1f902dbcec].
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | - + - + | $(MAKE) libcackey.@SHOBJEXT@ -$(MAKE) libcackey_g.@SHOBJEXT@ static: $(MAKE) libcackey.a -$(MAKE) libcackey_g.a |
︙ | |||
65 66 67 68 69 70 71 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + | ./test 2> $${tmpLogFile}; \ echo -ne "$$( \ grep 'Returned Value:' $${tmpLogFile} | sed 's@^.*/@@;s@ = {@ @;s@})$$@@;s@,@@g;s@ @\\x@g;s@\\@ \\@' | while IFS=' ' read -r count string; do \ printf '\\x%02x\\x%02x%s' $$[$${count} / 256] $$[$${count} % 256] "$${string}"; \ done \ )" > test-afl.data; rm -f $${tmpLogFile} |
︙ |
Modified cackey.c from [60cd8b85ae] to [11f5663297].
︙ | |||
60 61 62 63 64 65 66 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | - + | #ifndef NULL_PTR # define NULL_PTR 0 #endif #include "pkcs11.h" #include "pkcs11n.h" #include "asn1-x509.h" |
︙ |
Added sha-private.h version [b98da73ba4].
|
Added sha.h version [50b6da60c9].