Add -dane_ee_no_namechecks s_client(1) option
[openssl.git] / doc / crypto / X509_EXTENSION_set_object.pod
index 7abd9f03a75d7af11476465e8342c096d7d1fe20..f3f0de636ef7620c1ade761a93b3752f97129198 100644 (file)
@@ -1,14 +1,16 @@
+=pod
+
 =head1 NAME
 
 X509_EXTENSION_set_object, X509_EXTENSION_set_critical,
 X509_EXTENSION_set_data, X509_EXTENSION_create_by_NID,
 X509_EXTENSION_create_by_OBJ, X509_EXTENSION_get_object,
 X509_EXTENSION_get_critical, X509_EXTENSION_get_data - extension utility
-functions.
+functions
 
 =head1 SYNOPSIS
 
- int X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj);
+ int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
  int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
  int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
 
@@ -16,11 +18,11 @@ functions.
                                               int nid, int crit,
                                               ASN1_OCTET_STRING *data);
  X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
-                                              ASN1_OBJECT *obj, int crit,
+                                              const ASN1_OBJECT *obj, int crit,
                                               ASN1_OCTET_STRING *data);
 
  ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
- int X509_EXTENSION_get_critical(X509_EXTENSION *ex);
+ int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
  ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
 
 =head1 DESCRIPTION
@@ -82,4 +84,13 @@ X509_EXTENSION_get_data() returns an B<ASN1_OCTET_STRING> pointer.
 
 L<X509V3_get_d2i(3)>
 
+=head1 COPYRIGHT
+
+Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
+
+Licensed under the OpenSSL license (the "License").  You may not use
+this file except in compliance with the License.  You can obtain a copy
+in the file LICENSE in the source distribution or at
+L<https://www.openssl.org/source/license.html>.
+
 =cut