Lines Matching refs:certificate
5 x509 - X.509 certificate handling
13 An X.509 certificate is a structured grouping of information about
15 (certificate revocation list) is a tool to help determine if a
16 certificate is still valid. The exact definition of those can be
18 In OpenSSL, the type X509 is used to express such a certificate, and
21 A related structure is a certificate request, defined in PKCS#10 from
23 X509_REQ is used to express such a certificate request.
25 To handle some complex parts of a certificate, there are the types
26 X509_NAME (to express a certificate name), X509_ATTRIBUTE (to express
27 a certificate attribute), X509_EXTENSION (to express a certificate
31 certificate and a corresponding private key.
40 functions handle PKCS#10 certificate requests.
42 B<X509_NAME_>I<XXX> functions handle certificate names.
44 B<X509_ATTRIBUTE_>I<XXX> functions handle certificate attributes.
46 B<X509_EXTENSION_>I<XXX> functions handle certificate extensions.