Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

ne_ssl_trust_cert (3)

Name

ne_ssl_trust_cert - functions to indicate that certificates are trusted

Synopsis

#include <ne_session.h>

void ne_ssl_trust_cert(ne_session *session,
const ne_ssl_certificate *cert);

void ne_ssl_trust_default_ca(ne_session *session);

Description

NE_SSL_TRUST_CERT(3)          neon API reference          NE_SSL_TRUST_CERT(3)



NAME
       ne_ssl_trust_cert, ne_ssl_trust_default_ca - functions to indicate that
       certificates are trusted

SYNOPSIS
       #include <ne_session.h>

       void ne_ssl_trust_cert(ne_session *session,
                              const ne_ssl_certificate *cert);

       void ne_ssl_trust_default_ca(ne_session *session);

DESCRIPTION
       To indicate that a given certificate is trusted by the user, the
       certificate object can be passed to ne_ssl_trust_cert. The certificate
       object is duplicated internally and can subsequently be destroyed.

       The SSL library in use by neon may include a default set of CA
       certificates; calling the ne_ssl_trust_default_ca function will
       indicate that these CAs are trusted by the user.

EXAMPLES
       Load the CA certificate stored in /path/to/cacert.pem:

           ne_session *sess = ne_session_create(...);
           ne_ssl_certificate *cert = ne_ssl_cert_read("/path/to/cacert.pem");

           if (cert) {
              ne_ssl_trust_cert(sess, cert);
              ne_ssl_cert_free(cert);
           } else {
              printf("Could not load CA cert: %s\n", ne_get_error(sess));
           }


ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+------------------+
       |ATTRIBUTE TYPE | ATTRIBUTE VALUE  |
       +---------------+------------------+
       |Availability   | library/neon     |
       +---------------+------------------+
       |Stability      | Volatile         |
       +---------------+------------------+

SEE ALSO
       ne_ssl_cert_read, ne_ssl_cert_import, ne_ssl_cert_free

AUTHOR
       Joe Orton <neon@lists.manyfish.co.uk>
           Author.

COPYRIGHT
NOTES
       Source code for open source software components in Oracle Solaris can
       be found at https://www.oracle.com/downloads/opensource/solaris-source-
       code-downloads.html.

       This software was built from source available at
       https://github.com/oracle/solaris-userland.  The original community
       source was downloaded from
       http://www.webdav.org/neon/neon-0.30.1.tar.gz.

       Further information about this software can be found on the open source
       community website at http://www.webdav.org/neon/.



neon 0.30.1                    23 September 2014          NE_SSL_TRUST_CERT(3)