diff options
author | schwarze <> | 2018-04-25 15:17:52 +0000 |
---|---|---|
committer | schwarze <> | 2018-04-25 15:17:52 +0000 |
commit | 1831e7feb6d7e55b3d38e4d351404e713e18e56d (patch) | |
tree | f130e82b517f79f1ef9a85ce5cb2fb78933c5e90 /src/lib/libcrypto/man/ASN1_STRING_length.3 | |
parent | 962c7bdebee841f6bff029899800f68c5b8ec6f9 (diff) | |
download | openbsd-1831e7feb6d7e55b3d38e4d351404e713e18e56d.tar.gz openbsd-1831e7feb6d7e55b3d38e4d351404e713e18e56d.tar.bz2 openbsd-1831e7feb6d7e55b3d38e4d351404e713e18e56d.zip |
In asn1.h rev. 1.46 2018/04/25 11:48:21, tb@ added const qualifiers
to some parameters of some functions. Update the documentation.
Add a few additional missing const qualifiers while here.
Diffstat (limited to 'src/lib/libcrypto/man/ASN1_STRING_length.3')
-rw-r--r-- | src/lib/libcrypto/man/ASN1_STRING_length.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/man/ASN1_STRING_length.3 b/src/lib/libcrypto/man/ASN1_STRING_length.3 index 599319f864..97957f3820 100644 --- a/src/lib/libcrypto/man/ASN1_STRING_length.3 +++ b/src/lib/libcrypto/man/ASN1_STRING_length.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ASN1_STRING_length.3,v 1.15 2018/03/29 20:07:45 schwarze Exp $ | 1 | .\" $OpenBSD: ASN1_STRING_length.3,v 1.16 2018/04/25 15:17:52 schwarze Exp $ |
2 | .\" full merge up to: OpenSSL 4a56d2a3 Feb 25 16:49:27 2018 +0300 | 2 | .\" full merge up to: OpenSSL 4a56d2a3 Feb 25 16:49:27 2018 +0300 |
3 | .\" | 3 | .\" |
4 | .\" This file is a derived work. | 4 | .\" This file is a derived work. |
@@ -66,7 +66,7 @@ | |||
66 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 66 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
67 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 67 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
68 | .\" | 68 | .\" |
69 | .Dd $Mdocdate: March 29 2018 $ | 69 | .Dd $Mdocdate: April 25 2018 $ |
70 | .Dt ASN1_STRING_LENGTH 3 | 70 | .Dt ASN1_STRING_LENGTH 3 |
71 | .Os | 71 | .Os |
72 | .Sh NAME | 72 | .Sh NAME |
@@ -84,8 +84,8 @@ | |||
84 | .In openssl/asn1.h | 84 | .In openssl/asn1.h |
85 | .Ft int | 85 | .Ft int |
86 | .Fo ASN1_STRING_cmp | 86 | .Fo ASN1_STRING_cmp |
87 | .Fa "ASN1_STRING *a" | 87 | .Fa "const ASN1_STRING *a" |
88 | .Fa "ASN1_STRING *b" | 88 | .Fa "const ASN1_STRING *b" |
89 | .Fc | 89 | .Fc |
90 | .Ft unsigned char * | 90 | .Ft unsigned char * |
91 | .Fo ASN1_STRING_data | 91 | .Fo ASN1_STRING_data |
@@ -93,7 +93,7 @@ | |||
93 | .Fc | 93 | .Fc |
94 | .Ft ASN1_STRING * | 94 | .Ft ASN1_STRING * |
95 | .Fo ASN1_STRING_dup | 95 | .Fo ASN1_STRING_dup |
96 | .Fa "ASN1_STRING *a" | 96 | .Fa "const ASN1_STRING *a" |
97 | .Fc | 97 | .Fc |
98 | .Ft const unsigned char * | 98 | .Ft const unsigned char * |
99 | .Fo ASN1_STRING_get0_data | 99 | .Fo ASN1_STRING_get0_data |
@@ -101,7 +101,7 @@ | |||
101 | .Fc | 101 | .Fc |
102 | .Ft int | 102 | .Ft int |
103 | .Fo ASN1_STRING_length | 103 | .Fo ASN1_STRING_length |
104 | .Fa "ASN1_STRING *x" | 104 | .Fa "const ASN1_STRING *x" |
105 | .Fc | 105 | .Fc |
106 | .Ft void | 106 | .Ft void |
107 | .Fo ASN1_STRING_length_set | 107 | .Fo ASN1_STRING_length_set |
@@ -121,7 +121,7 @@ | |||
121 | .Fc | 121 | .Fc |
122 | .Ft int | 122 | .Ft int |
123 | .Fo ASN1_STRING_type | 123 | .Fo ASN1_STRING_type |
124 | .Fa "ASN1_STRING *x" | 124 | .Fa "const ASN1_STRING *x" |
125 | .Fc | 125 | .Fc |
126 | .Sh DESCRIPTION | 126 | .Sh DESCRIPTION |
127 | These functions manipulate | 127 | These functions manipulate |