Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ne_ssl_trust_cert(3) [centos man page]

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 ", ne_get_error(sess)); } SEE ALSO
ne_ssl_cert_read, ne_ssl_cert_import, ne_ssl_cert_free AUTHOR
Joe Orton <neon@lists.manyfish.co.uk> Author. COPYRIGHT
neon 0.30.0 31 July 2013 NE_SSL_TRUST_CERT(3)

Check Out this Related Man Page

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 ", ne_get_error(sess)); } SEE ALSO
ne_ssl_cert_read, ne_ssl_cert_import, ne_ssl_cert_free AUTHOR
Joe Orton <neon@lists.manyfish.co.uk> Author. COPYRIGHT
neon 0.29.6 3 May 2011 NE_SSL_TRUST_CERT(3)
Man Page

3 More Discussions You Might Find Interesting

1. HP-UX

HP-UX revert from trusted system to default

All, I have inherited some software that is running on HP-HX 11.11. The software ofers a GUI login and the user passwords can be either internal to the software, user defined or based on the matching unix account. The problem I have is that the server has been converted to 'trusted' years... (7 Replies)
Discussion started by: rbatte1
7 Replies

2. Shell Programming and Scripting

Script to check Digital Certificates Expiration

Hi All, I have certificates that are being used in my current Project and all the Certificates are of extension ( .pfx - Identities , .cert - trusted certificates etc). All these certificates will expire in some other time. Can someone help me out in providing a script that is used to check the... (0 Replies)
Discussion started by: manukonda0102
0 Replies

3. UNIX for Dummies Questions & Answers

Query: How to install commercial cert into AIX and use it for FTPS connection

Hi Techies, I wish to check with everyone here something regarding Configuration of FTPS Server in AIX using Commercial Digital Cert instead of Sel Sign Cert. I'm working as system integration designer and I'm currently working on a interface which involves integration btw two systems using... (6 Replies)
Discussion started by: mkmuraly
6 Replies