[or-cvs] Basic diffie-helman wrappers with fixed modulus and tests
Nick Mathewson
nickm at seul.org
Thu May 1 00:53:49 UTC 2003
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv21123/src/or
Modified Files:
test.c
Log Message:
Basic diffie-helman wrappers with fixed modulus and tests
Index: test.c
===================================================================
RCS file: /home/or/cvsroot/src/or/test.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- test.c 17 Apr 2003 01:56:06 -0000 1.7
+++ test.c 1 May 2003 00:53:46 -0000 1.8
@@ -229,8 +229,41 @@
buf_free(buf2);
}
+void
+test_crypto_dh()
+{
+ crypto_dh_env_t *dh1, *dh2;
+ char p1[CRYPTO_DH_SIZE];
+ char p2[CRYPTO_DH_SIZE];
+ char s1[CRYPTO_DH_SIZE];
+ char s2[CRYPTO_DH_SIZE];
+
+ dh1 = crypto_dh_new();
+ dh2 = crypto_dh_new();
+ test_eq(crypto_dh_get_bytes(dh1), CRYPTO_DH_SIZE);
+ test_eq(crypto_dh_get_bytes(dh2), CRYPTO_DH_SIZE);
+
+ memset(p1, 0, CRYPTO_DH_SIZE);
+ memset(p2, 0, CRYPTO_DH_SIZE);
+ test_memeq(p1, p2, CRYPTO_DH_SIZE);
+ test_assert(! crypto_dh_get_public(dh1, p1, CRYPTO_DH_SIZE));
+ test_memneq(p1, p2, CRYPTO_DH_SIZE);
+ test_assert(! crypto_dh_get_public(dh2, p2, CRYPTO_DH_SIZE));
+ test_memneq(p1, p2, CRYPTO_DH_SIZE);
+
+ memset(s1, 0, CRYPTO_DH_SIZE);
+ memset(s2, 0, CRYPTO_DH_SIZE);
+ test_assert(! crypto_dh_compute_secret(dh1, p2, CRYPTO_DH_SIZE, s1));
+ test_assert(! crypto_dh_compute_secret(dh2, p1, CRYPTO_DH_SIZE, s2));
+ test_memeq(s1, s2, CRYPTO_DH_SIZE);
+
+ crypto_dh_free(dh1);
+ crypto_dh_free(dh2);
+}
+
void
-test_crypto() {
+test_crypto()
+{
crypto_cipher_env_t *env1, *env2;
crypto_pk_env_t *pk1, *pk2;
char *data1, *data2, *data3, *cp;
@@ -441,6 +474,7 @@
puts("========================== Buffers =========================");
test_buffers();
puts("========================== Crypto ==========================");
+ test_crypto_dh();
test_crypto(); /* this seg faults :( */
puts("\n========================== Util ============================");
test_util();
More information about the tor-commits
mailing list