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

(test_dsa): New function.

Rev: src/nettle/testsuite/testutils.c:1.14
Rev: src/nettle/testsuite/testutils.h:1.12
parent 70e25690
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include "testutils.h" #include "testutils.h"
#include "cbc.h" #include "cbc.h"
#include "knuth-lfib.h"
#include <ctype.h> #include <ctype.h>
#include <stdio.h> #include <stdio.h>
...@@ -376,6 +377,9 @@ test_rsa_sha1(struct rsa_public_key *pub, ...@@ -376,6 +377,9 @@ test_rsa_sha1(struct rsa_public_key *pub,
mpz_clear(signature); mpz_clear(signature);
} }
#undef SIGN
#undef VERIFY
void void
test_rsa_key(struct rsa_public_key *pub, test_rsa_key(struct rsa_public_key *pub,
struct rsa_private_key *key) struct rsa_private_key *key)
...@@ -446,5 +450,61 @@ test_rsa_key(struct rsa_public_key *pub, ...@@ -446,5 +450,61 @@ test_rsa_key(struct rsa_public_key *pub,
mpz_clear(tmp); mpz_clear(phi); mpz_clear(tmp); mpz_clear(phi);
} }
#define DSA_VERIFY(key, hash, msg, signature) ( \
sha1_update(hash, LDATA(msg)), \
dsa_verify(key, hash, signature) \
)
void
test_dsa(struct dsa_private_key *key)
{
struct sha1_ctx sha1;
struct dsa_signature signature;
struct knuth_lfib_ctx lfib;
sha1_init(&sha1);
dsa_signature_init(&signature);
knuth_lfib_init(&lfib, 1111);
sha1_update(&sha1, LDATA("The magic words are squeamish ossifrage"));
dsa_sign(key,
&lfib, (nettle_random_func) knuth_lfib_random,
&sha1, &signature);
if (verbose)
{
fprintf(stderr, "dsa signature: ");
mpz_out_str(stderr, 16, signature.r);
fprintf(stderr, ", ");
mpz_out_str(stderr, 16, signature.s);
fprintf(stderr, "\n");
}
#if 0
if (mpz_cmp(signature, expected))
FAIL();
#endif
/* Try bad data */
if (DSA_VERIFY(&key->pub, &sha1,
"The magick words are squeamish ossifrage", &signature))
FAIL();
/* Try correct data */
if (!DSA_VERIFY(&key->pub, &sha1,
"The magic words are squeamish ossifrage", &signature))
FAIL();
/* Try bad signature */
mpz_togglebit(signature.r, 17);
if (DSA_VERIFY(&key->pub, &sha1,
"The magic words are squeamish ossifrage", &signature))
FAIL();
dsa_signature_clear(&signature);
}
#endif /* WITH_PUBLIC_KEY */ #endif /* WITH_PUBLIC_KEY */
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#if WITH_PUBLIC_KEY #if WITH_PUBLIC_KEY
# include "rsa.h" # include "rsa.h"
# include "dsa.h"
#endif #endif
#include "nettle-meta.h" #include "nettle-meta.h"
...@@ -86,6 +87,9 @@ void ...@@ -86,6 +87,9 @@ void
test_rsa_key(struct rsa_public_key *pub, test_rsa_key(struct rsa_public_key *pub,
struct rsa_private_key *key); struct rsa_private_key *key);
void
test_dsa(struct dsa_private_key *key);
#endif /* WITH_PUBLIC_KEY */ #endif /* WITH_PUBLIC_KEY */
#define H2(d, s) decode_hex((d), (s)) #define H2(d, s) decode_hex((d), (s))
......
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