diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/crypto/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/crypto/Makefile.in | 3 | ||||
| -rw-r--r-- | src/lib/crypto/t_hmac.c | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog index 2f8c304da..f513de9d5 100644 --- a/src/lib/crypto/ChangeLog +++ b/src/lib/crypto/ChangeLog @@ -1,3 +1,8 @@ +2002-12-06 Ezra Peisach <epeisach@bu.edu> + + * Makefile.in (clean): Clean up more test executables and object + files. + 2002-11-03 Ken Hornstein <kenh@cmf.nrl.navy.mil> * combine_keys.c: Fix up calling convention to match prototype diff --git a/src/lib/crypto/Makefile.in b/src/lib/crypto/Makefile.in index 10f4ceb4b..c2a249a64 100644 --- a/src/lib/crypto/Makefile.in +++ b/src/lib/crypto/Makefile.in @@ -189,7 +189,8 @@ vectors$(EXEEXT): vectors.$(OBJEXT) $(CRYPTO_DEPLIB) clean:: - $(RM) t_nfold.o t_nfold t_encrypt t_encrypt.o t_prng.o t_prng + $(RM) t_nfold.o t_nfold t_encrypt t_encrypt.o t_prng.o t_prng \ + t_hmac.o t_hmac t_pkcs5.o t_pkcs5 pbkdf2.o -$(RM) t_prng.output all-windows:: diff --git a/src/lib/crypto/t_hmac.c b/src/lib/crypto/t_hmac.c index 69ca42ad2..2f65f9133 100644 --- a/src/lib/crypto/t_hmac.c +++ b/src/lib/crypto/t_hmac.c @@ -228,8 +228,8 @@ static void test_hmac() 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, }, - 73, ("Test Using Larger Than Block-Size Key and Larger " - "Than One Block-Size Data"), + 73, + "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data", "0x6f630fad67cda0ee1fb1f562db3aa53e" }, }, sha1tests[] = { |
