Displaying 1 result from an estimated 1 matches for "sshkey_private_rsa1_to_blob".
2015 Mar 22
5
[Bug 2369] New: `ssh-keygen -A` errors on RSA1 when building with SSH1 disabled
...Component: ssh-keygen
Assignee: unassigned-bugs at mindrot.org
Reporter: vapier at gentoo.org
sshkey.c:sshkey_private_to_fileblob disables support for RSA1 when SSH1
support has been disabled:
switch (key->type) {
#ifdef WITH_SSH1
case KEY_RSA1:
return sshkey_private_rsa1_to_blob(key, blob,
passphrase, comment);
#endif /* WITH_SSH1 */
but ssh-keygen.c will still include RSA1:
static void
do_gen_all_hostkeys(struct passwd *pw)
{
struct {
char *key_type;
char *key_type_display;
char *path;
} key_types[] = {
{ "rsa1&quo...