Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
00975282
Commit
00975282
authored
16 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Enhance tor-checkkey tool so it can generate key hashes too.
svn:r18478
parent
34b285b0
No related branches found
Branches containing commit
Tags
tor-0.2.9.3-alpha
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/tor-checkkey.c
+28
-6
28 additions, 6 deletions
src/tools/tor-checkkey.c
with
28 additions
and
6 deletions
src/tools/tor-checkkey.c
+
28
−
6
View file @
00975282
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment