Mercurial > dropbear
diff demos/test/rsa_test.c @ 15:6362d3854bb4 libtomcrypt-orig
0.96 release of LibTomCrypt
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 15 Jun 2004 14:07:21 +0000 |
parents | |
children | 5d99163f7e32 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/demos/test/rsa_test.c Tue Jun 15 14:07:21 2004 +0000 @@ -0,0 +1,91 @@ +#include "test.h" + +int rsa_test(void) +{ + unsigned char in[1024], out[1024], tmp[1024]; + rsa_key key; + int hash_idx, prng_idx, stat, stat2; + unsigned long len, len2; + static unsigned char lparam[] = { 0x01, 0x02, 0x03, 0x04 }; + + hash_idx = find_hash("sha1"); + prng_idx = find_prng("yarrow"); + if (hash_idx == -1 || prng_idx == -1) { + printf("rsa_test requires SHA1 and yarrow"); + return 1; + } + + /* make a random key/msg */ + yarrow_read(in, 20, &test_yarrow); + + /* make a random key */ + DO(rsa_make_key(&test_yarrow, prng_idx, 1024/8, 65537, &key)); + + /* encrypt the key (without lparam) */ + len = sizeof(out); + len2 = sizeof(tmp); + DO(rsa_encrypt_key(in, 20, out, &len, NULL, 0, &test_yarrow, prng_idx, hash_idx, &key)); + /* change a byte */ + out[0] ^= 1; + DO(rsa_decrypt_key(out, len, tmp, &len2, NULL, 0, &test_yarrow, prng_idx, hash_idx, &stat2, &key)); + /* change a byte back */ + out[0] ^= 1; + DO(rsa_decrypt_key(out, len, tmp, &len2, NULL, 0, &test_yarrow, prng_idx, hash_idx, &stat, &key)); + if (!(stat == 1 && stat2 == 0)) { + printf("rsa_decrypt_key failed"); + return 1; + } + if (len2 != 20 || memcmp(tmp, in, 20)) { + printf("rsa_decrypt_key mismatch len %lu", len2); + return 1; + } + + /* encrypt the key (with lparam) */ + len = sizeof(out); + len2 = sizeof(tmp); + DO(rsa_encrypt_key(in, 20, out, &len, lparam, sizeof(lparam), &test_yarrow, prng_idx, hash_idx, &key)); + /* change a byte */ + out[0] ^= 1; + DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), &test_yarrow, prng_idx, hash_idx, &stat2, &key)); + /* change a byte back */ + out[0] ^= 1; + DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), &test_yarrow, prng_idx, hash_idx, &stat, &key)); + if (!(stat == 1 && stat2 == 0)) { + printf("rsa_decrypt_key failed"); + return 1; + } + if (len2 != 20 || memcmp(tmp, in, 20)) { + printf("rsa_decrypt_key mismatch len %lu", len2); + return 1; + } + + /* sign a message (unsalted, lower cholestorol and Atkins approved) now */ + len = sizeof(out); + DO(rsa_sign_hash(in, 20, out, &len, &test_yarrow, prng_idx, hash_idx, 0, &key)); + DO(rsa_verify_hash(out, len, in, 20, &test_yarrow, prng_idx, hash_idx, 0, &stat, &key)); + /* change a byte */ + in[0] ^= 1; + DO(rsa_verify_hash(out, len, in, 20, &test_yarrow, prng_idx, hash_idx, 0, &stat2, &key)); + + if (!(stat == 1 && stat2 == 0)) { + printf("rsa_verify_hash (unsalted) failed, %d, %d", stat, stat2); + return 1; + } + + /* sign a message (salted) now */ + len = sizeof(out); + DO(rsa_sign_hash(in, 20, out, &len, &test_yarrow, prng_idx, hash_idx, 8, &key)); + DO(rsa_verify_hash(out, len, in, 20, &test_yarrow, prng_idx, hash_idx, 8, &stat, &key)); + /* change a byte */ + in[0] ^= 1; + DO(rsa_verify_hash(out, len, in, 20, &test_yarrow, prng_idx, hash_idx, 8, &stat2, &key)); + + if (!(stat == 1 && stat2 == 0)) { + printf("rsa_verify_hash (salted) failed, %d, %d", stat, stat2); + return 1; + } + + /* free the key and return */ + rsa_free(&key); + return 0; +}