On Mon, 26 Aug 2002, Lutz Jaenicke wrote:

> On Mon, Aug 26, 2002 at 11:45:22AM -0400, Adrian Stanila wrote:
> >     I'm interested to list all symetric chipers what MY openssl know !
> >     It is possible ?
>
> man ciphers.
:))) I'm versy sorry for misunderstanding . I want a C code !
it's posible something like this  ?

SSL_METHOD *sslmeth;
SSL_CIPHER *sslc;
int i;


  for(i = 0;;i++) {
      sslc = (sslmeth->get_cipher)(i);
      if (!sslc) break;
      printf("cipher_%s", sslc->name);
    }


It's possible to get all digest methodes in the same way ???


Best Regards
Adrian Stanila

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to