Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
2d8ca197
Commit
2d8ca197
authored
Jan 31, 2001
by
Niels Möller
Browse files
* src/lsh-decode-key.c: Include rsa.h. Added program name prefix
to the diagnostic messages. Rev: src/lsh-decode-key.c:1.8
parent
2a7f7e0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lsh-decode-key.c
View file @
2d8ca197
...
...
@@ -10,6 +10,7 @@
#include
"lsh_argp.h"
#include
"publickey_crypto.h"
#include
"read_file.h"
#include
"rsa.h"
#include
"sexp_commands.h"
#include
"spki.h"
#include
"version.h"
...
...
@@ -156,7 +157,7 @@ do_decode_key(struct abstract_write *s,
{
struct
verifier
*
v
;
werror
(
"Reading key of type ssh-dss...
\n
"
);
werror
(
"
lsh-decode-key:
Reading key of type ssh-dss...
\n
"
);
if
(
!
(
(
v
=
parse_ssh_dss_public
(
&
buffer
))
))
{
...
...
@@ -173,7 +174,7 @@ do_decode_key(struct abstract_write *s,
{
struct
verifier
*
v
;
werror
(
"Reading key of type ssh-rsa...
\n
"
);
werror
(
"
lsh-decode-key:
Reading key of type ssh-rsa...
\n
"
);
if
(
!
(
(
v
=
parse_ssh_rsa_public
(
&
buffer
))
))
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment