David G. Hesprich <[EMAIL PROTECTED]>:

> ./config rsaref
> make
> make test
> make install
> 
> it compiles, all tests appear to complete, and installs. However, OpenSSH
> complains of the lack of RSA support in the libraries. [...]
> 
> I have contacted Damien Miller at the OpenSSH project, and he was kind
> enough to send me some test code that he was working on to briefly test the
> compiled libs for the necessary RSA functionality:
> 
> #include
> #include
> int main(void)
> {
> RSA *key;
> 
> key=RSA_generate_key(32,3,NULL,NULL);
> if(key==NULL)
> printf("NO RSA!\n");
> else
> printf("RSA OK!\n");
> return(0);
> }

> [...] I have tried compliling without the "rsaref" parameter, with
> the same results.

In that test program, insert "ERR_print_errors_fp(stdout);" before the
"return(0);" statement and recompile.  Running the program then will
output the notorious "prng not seeded" error message, which is
discussed in the OpenSSL FAQ.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to