Skip to content
Snippets Groups Projects
Commit 87ecba53 authored by Niels Möller's avatar Niels Möller
Browse files

*** empty log message ***

Rev: src/nettle/ChangeLog:1.58
Rev: src/nettle/NEWS:1.5
Rev: src/nettle/base64-meta.c:1.2
Rev: src/nettle/base64.h:1.2
Rev: src/nettle/sha1.c:1.7
Rev: src/nettle/testsuite/.cvsignore:1.16
parent cc64fce1
No related branches found
No related tags found
No related merge requests found
2002-01-22 Niels Mller <nisse@cuckoo.hack.org>
* nettle.texinfo (Nettle soup): New chapter.
(Hash functions): New subsection on struct nettle_hash.
(Hash functions): New subsection on struct nettle_cipher.
(Keyed hash functions): New section, describing MAC:s and HMAC.
* testsuite/testutils.c (test_armor): New function.
* testsuite/base64-test.c: New testcase.
* testsuite/Makefile.am (TS_PROGS): Added base64-test.
* nettle-meta.h (struct nettle_armor): New struct.
* configure.in: Bumped version to 1.5.
* Makefile.am (libnettle_a_SOURCES): Added base64 files, and some
missing header files.
* base64.c, base64.h, base64-meta.c: New files, hacked by Dan
Egnor.
2002-01-16 Niels Mller <nisse@cuckoo.hack.org>
* testsuite/yarrow-test.c: Deleted ran_array code, use
......
NEWS for the 1.5 release
Added RSA support. Key generation and signatures.
Added support for HMAC (RFC-2104).
Changed the interface for hash functions. The md5_digest
function is now equivalent to the old sequence of md5_final,
md5_digest, md5_init, and similarly for the other hashing
......
......@@ -2,7 +2,7 @@
/* nettle, low-level cryptographics library
*
* Copyright (C) 2002 Niels Möller
* Copyright (C) 2002 Dan Egnor, Niels Möller
*
* The nettle library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
......
......@@ -5,7 +5,7 @@
/* nettle, low-level cryptographics library
*
* Copyright (C) 2001 Niels Möller
* Copyright (C) 2002 Niels Möller, Dan Egnor
*
* The nettle library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
......
/* sha1.h
/* sha1.c
*
* The sha1 hash function.
*/
......
......@@ -3,6 +3,7 @@ Makefile
Makefile.in
aes-test
arcfour-test
base64-test
bignum-test
blowfish-test
cast128-test
......
......@@ -3,6 +3,7 @@
/Makefile.in
/aes-test
/arcfour-test
/base64-test
/bignum-test
/blowfish-test
/cast128-test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment