Query: ne_ssl_dname
OS: redhat
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NE_SSL_CERTIFICATE(3) neon API reference NE_SSL_CERTIFICATE(3)NAMEne_ssl_certificate, ne_ssl_dname - structures representing SSL certificatesSYNOPSIS#include <ne_session.h> /* A simplified X.509 distinguished name. */ typedef struct { const char *country, *state, *locality, *organization; const char *organizationalUnit; const char *commonName; } ne_ssl_dname; /* A simplified SSL certificate. */ typedef struct { const ne_ssl_dname *subject, *issuer; const char *from, *until; } ne_ssl_certificate;DESCRIPTIONThe ne_ssl_dname structure is used to represent a simplified X.509 distinguished name, as used in SSL certificates; a distinguished name is used to uniquely identify an entity. Along with the fields giving the geographical and organizational location of the entity, the common- Name field will be assigned the DNS hostname of the entity. The ne_ssl_readable_dname function can be used to create a single-line string out of an ne_ssl_dname structure. The ne_ssl_certificate structure is used to represent a simplified SSL certificate; containing the distinguished names of the issuer and subject of the certificate. The issuer is the entity which has digitally signed the certificate to guarantee its authenticity; the subject is the owner of the certificate. A certificate is only valid for a certain period of time: the from and until contain strings giving the validity period.SEE ALSOne_ssl_dname(3), ne_ssl_set_verify(3)AUTHORJoe Orton <neon@webdav.org>. neon 0.23.5 8 October 2002 NE_SSL_CERTIFICATE(3)
Related Man Pages |
---|
ne_ssl_cert_identity(3) - debian |
ne_ssl_cert_subject(3) - debian |
ne_ssl_cert_signedby(3) - debian |
ne_ssl_cert_subject(3) - centos |
ne_ssl_cert_signedby(3) - suse |
Similar Topics in the Unix Linux Community |
---|
C snipet on char Pointers |
Debian: sendmail SSL certificate |
Creation of SSL certificates |
[Solved] Terminate TCPDUMP in a certain time period |
Installing SSL certificates on Ubuntu Server 12.04 |