summaryrefslogtreecommitdiffstats
path: root/include/internal
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-30 13:31:16 +0200
committerRichard Levitte <levitte@openssl.org>2017-04-04 11:29:23 +0200
commit93f7d6fc10b75814d90d804edb56947cacf8964e (patch)
treee66b5bc1a1826a70485d1a3cd734e1a5a85fa3d2 /include/internal
parent8edb4ee1a237b43d9520eaa658a4ad2671e8dd0c (diff)
Implement internal ASN.1 types INT32, UINT32, INT64, UINT64
Also Z varieties. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3088)
Diffstat (limited to 'include/internal')
-rw-r--r--include/internal/asn1t.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/internal/asn1t.h b/include/internal/asn1t.h
new file mode 100644
index 0000000000..32d637df79
--- /dev/null
+++ b/include/internal/asn1t.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2017 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
+ * https://www.openssl.org/source/license.html
+ */
+
+#include <openssl/asn1t.h>
+
+DECLARE_ASN1_ITEM(INT32)
+DECLARE_ASN1_ITEM(ZINT32)
+DECLARE_ASN1_ITEM(UINT32)
+DECLARE_ASN1_ITEM(ZUINT32)
+DECLARE_ASN1_ITEM(INT64)
+DECLARE_ASN1_ITEM(ZINT64)
+DECLARE_ASN1_ITEM(UINT64)
+DECLARE_ASN1_ITEM(ZUINT64)