You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! There is the following mismatch in the openssh_mapper.c:
It uses
RSA_set0_key(rsa, rsa_e, rsa_n, NULL);
when is parsing ssh v1 key, but
RSA_set0_key(rsa, rsa_n, rsa_e, NULL);
for ssh v2 key. Notice the different order of rsa_e and rsa_n in the calls. Possibly, that's an error. However, I don't known where can I get an SSH version 1 key to check it in runtime.
The text was updated successfully, but these errors were encountered:
Hi! There is the following mismatch in the
openssh_mapper.c
:It uses
when is parsing ssh v1 key, but
for ssh v2 key. Notice the different order of
rsa_e
andrsa_n
in the calls. Possibly, that's an error. However, I don't known where can I get an SSH version 1 key to check it in runtime.The text was updated successfully, but these errors were encountered: