aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-02-21 01:46:45 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-02-21 01:46:45 +0000
commitaa066b9e6e44297a00e641e200bf48b5728ae5c3 (patch)
treefceb166c14070cc27c1da8156f3bf78c042bfc24 /crypto/asn1
parenta67a9694f7fb5cf96cf0c370f3494111a05770be (diff)
downloadopenssl-aa066b9e6e44297a00e641e200bf48b5728ae5c3.tar.gz
Add more functionality to issuer alt name and subject alt name. New options
to include email addresses from DN and copy details from issuer certificate. Include examples in openssl.cnf, update Win32 ordinals.
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/asn1.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/asn1/asn1.h b/crypto/asn1/asn1.h
index 0f74f40e65..9901d6bd89 100644
--- a/crypto/asn1/asn1.h
+++ b/crypto/asn1/asn1.h
@@ -328,6 +328,8 @@ typedef struct asn1_header_st
#define ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
ASN1_STRING_type_new(V_ASN1_IA5STRING)
#define ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
+#define ASN1_IA5STRING_dup(a) \
+ (ASN1_IA5STRING *)ASN1_STRING_dup((ASN1_STRING *)a)
#define M_i2d_ASN1_IA5STRING(a,pp) \
i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
V_ASN1_UNIVERSAL)