summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509.h
diff options
context:
space:
mode:
authortb <>2018-03-17 15:28:27 +0000
committertb <>2018-03-17 15:28:27 +0000
commit6901496c6e645908747ab7b69ce947f3ea51fa84 (patch)
treead43d4b686c612f6c1e9e0e35986f6d900c88366 /src/lib/libcrypto/x509/x509.h
parent2650ae604a4290c33d7b66ac010a0704ba8e4bff (diff)
downloadopenbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.tar.gz
openbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.tar.bz2
openbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.zip
Provide X509_NAME_ENTRY_set()
ok jsing
Diffstat (limited to 'src/lib/libcrypto/x509/x509.h')
-rw-r--r--src/lib/libcrypto/x509/x509.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h
index a4aa849e31..5ccaf41114 100644
--- a/src/lib/libcrypto/x509/x509.h
+++ b/src/lib/libcrypto/x509/x509.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509.h,v 1.43 2018/03/17 14:55:39 jsing Exp $ */ 1/* $OpenBSD: x509.h,v 1.44 2018/03/17 15:28:27 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -1123,6 +1123,7 @@ int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
1123 const unsigned char *bytes, int len); 1123 const unsigned char *bytes, int len);
1124ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); 1124ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
1125ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); 1125ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
1126int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne);
1126 1127
1127int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x); 1128int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1128int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, 1129int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,