aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-02-10 20:03:58 +0000
committerNick Mathewson <nickm@torproject.org>2009-02-10 20:03:58 +0000
commit009752823af6d263481b21ebcb2dd8d725dc97e7 (patch)
tree6f2187c99c3d5b28043cd106d574c1fe860046df /src/tools
parent34b285b09fda0b03da46b802cdebc2580b10f914 (diff)
downloadtor-009752823af6d263481b21ebcb2dd8d725dc97e7.tar
tor-009752823af6d263481b21ebcb2dd8d725dc97e7.tar.gz
Enhance tor-checkkey tool so it can generate key hashes too.
svn:r18478
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tor-checkkey.c34
1 files changed, 28 insertions, 6 deletions
diff --git a/src/tools/tor-checkkey.c b/src/tools/tor-checkkey.c
index 7807b541b..b29b52d8d 100644
--- a/src/tools/tor-checkkey.c
+++ b/src/tools/tor-checkkey.c
@@ -17,12 +17,15 @@ int main(int c, char **v)
crypto_pk_env_t *env;
char *str;
RSA *rsa;
+ int wantdigest=0;
+ int fname_idx;
init_logging();
if (c < 2) {
fprintf(stderr, "Hi. I'm tor-checkkey. Tell me a filename that "
"has a PEM-encoded RSA public key (like in a cert) and I'll "
- "dump the modulus.\n");
+ "dump the modulus. Use the --digest option too and I'll "
+ "dump the digest.\n");
return 1;
}
@@ -31,9 +34,21 @@ int main(int c, char **v)
return 1;
}
- str = read_file_to_str(v[1], 0, NULL);
+ if (!strcmp(v[1], "--digest")) {
+ wantdigest = 1;
+ fname_idx = 2;
+ if (c<3) {
+ fprintf(stderr, "too few arguments");
+ return 1;
+ }
+ } else {
+ wantdigest = 0;
+ fname_idx = 1;
+ }
+
+ str = read_file_to_str(v[fname_idx], 0, NULL);
if (!str) {
- fprintf(stderr, "Couldn't read %s\n", v[1]);
+ fprintf(stderr, "Couldn't read %s\n", v[fname_idx]);
return 1;
}
@@ -44,10 +59,17 @@ int main(int c, char **v)
}
tor_free(str);
- rsa = _crypto_pk_env_get_rsa(env);
- str = BN_bn2hex(rsa->n);
+ if (wantdigest) {
+ char digest[HEX_DIGEST_LEN+1];
+ if (crypto_pk_get_fingerprint(env, digest, 0)<0)
+ return 1;
+ printf("%s\n",digest);
+ } else {
+ rsa = _crypto_pk_env_get_rsa(env);
+ str = BN_bn2hex(rsa->n);
- printf("%s\n", str);
+ printf("%s\n", str);
+ }
return 0;
}