Add functions to convert between uint64_t and ASN1_INTEGER.
[openssl.git] / doc / crypto / X509_new.pod
index 6de81e3d1d40cafd1b25accdceef5e935751fca7..d6f3d3092fd74f070c9c6399f44a520ca967d0cb 100644 (file)
@@ -2,10 +2,12 @@
 
 =head1 NAME
 
-X509_new, X509_free, - X509 certificate ASN1 allocation functions
+X509_new, X509_free - X509 certificate ASN1 allocation functions
 
 =head1 SYNOPSIS
 
+ #include <openssl/x509.h>
+
  X509 *X509_new(void);
  void X509_free(X509 *a);
 
@@ -17,6 +19,7 @@ X509 structure, which represents an X509 certificate.
 X509_new() allocates and initializes a X509 structure.
 
 X509_free() frees up the B<X509> structure B<a>.
+If B<a> is NULL nothing is done.
 
 =head1 RETURN VALUES