On Wed, Sep 12, 2001 at 07:53:09PM +0200, Nebi Musa wrote:
> I would be very grateful if someone will explain even a few of the following 
>functions:
> 
> SSL_CTX_ctrl

Not yet documented. You should not need to use it directly, is called from
other functions or macros.

> SSL_CTX_get_app_data

Not yet documented. From ssl.h it is identical to
  ssl.h:#define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx,0))
see "man SSL_CTX_get_ex_new_index"

> SSL_CTX_get_cert_store

man SSL_CTX_set_cert_store

> SSL_CTX_set_client_cert_cb
> SSL_CTX_get_client_cert_cb

Not yet documented. The callback set by these functions is called on a client,
when the server asks for a client cert, so that the client can choose
interactively and/or based on the CA list sent.

> SSL_CTX_sess_accept

Not yet documented.

> SSL_CTX_set_cert_verify_cb

Short form for SSL_CTX_set_cert_verify_callback.
man SSL_CTX_set_cert_verify_callback

> SSL_CTX_set_client_CA_list

man SSL_load_client_CA_file

> SSL_get_certificate

Not yet documented. Seems to return our own certificate.

Some of these manual pages may have been added after release of 0.9.6b
and are only available in the snapshot released or at www.openssl.org.

Best regards,
        Lutz
-- 
Lutz Jaenicke                             [EMAIL PROTECTED]
BTU Cottbus               http://www.aet.TU-Cottbus.DE/personen/jaenicke/
Lehrstuhl Allgemeine Elektrotechnik                  Tel. +49 355 69-4129
Universitaetsplatz 3-4, D-03044 Cottbus              Fax. +49 355 69-4153
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to