summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/tasn_typ.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2002-10-03 12:38:52 +0000
committerDr. Stephen Henson <steve@openssl.org>2002-10-03 12:38:52 +0000
commit230fd6b7b66f0b72b1cf7fc300652a1adf94ba1a (patch)
tree0b44fcc6a6e1bd9cb4de4fb5d5a9939b3768b4c5 /crypto/asn1/tasn_typ.c
parent20b33a015f1ea8b0927aa5057d2e6abe053b902f (diff)
Preliminary streaming ASN1 encode support.
Diffstat (limited to 'crypto/asn1/tasn_typ.c')
-rw-r--r--crypto/asn1/tasn_typ.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/asn1/tasn_typ.c b/crypto/asn1/tasn_typ.c
index 804d2eeba2..6f17f1bec7 100644
--- a/crypto/asn1/tasn_typ.c
+++ b/crypto/asn1/tasn_typ.c
@@ -131,3 +131,7 @@ IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
IMPLEMENT_ASN1_TYPE_ex(ASN1_BOOLEAN, ASN1_BOOLEAN, -1)
IMPLEMENT_ASN1_TYPE_ex(ASN1_TBOOLEAN, ASN1_BOOLEAN, 1)
IMPLEMENT_ASN1_TYPE_ex(ASN1_FBOOLEAN, ASN1_BOOLEAN, 0)
+
+/* Special, OCTET STRING with indefinite length constructed support */
+
+IMPLEMENT_ASN1_TYPE_ex(ASN1_OCTET_STRING_NDEF, ASN1_OCTET_STRING, ASN1_TFLG_NDEF)