Displaying 1 result from an estimated 1 matches for "dsa_host_key".
2000 May 15
1
[PATCH] using openssl with no-rsa?
...ey);
+ if (public_key != NULL)
+ RSA_free(public_key);
+ if (sensitive_data.private_key != NULL)
+ RSA_free(sensitive_data.private_key);
+ if (sensitive_data.host_key != NULL)
+ RSA_free(sensitive_data.host_key);
if (sensitive_data.dsa_host_key != NULL)
key_free(sensitive_data.dsa_host_key);
}
The machine is an i686 using standard RedHat 6.2.
It appears that the ssh binaries are doing some form of delayed linking that is
allowing the program to run without all the functions defined. It appears that
as long as no RSA_xx...