aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-11-15 16:49:29 -0500
committerJack Lloyd <[email protected]>2017-11-15 16:49:29 -0500
commitbe4415ebb69a4232605d71f2a6b7df2d1cb114ee (patch)
treec9cd59c9d42d6a185d172a0b12a6d38f3e270087 /src/lib
parent24a5d0688748abe132b602995a993e5d0bc7d455 (diff)
Increase the size of an ASN.1 tag enum to 32-bits
Fixes GH #751
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/asn1/asn1_obj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/asn1/asn1_obj.h b/src/lib/asn1/asn1_obj.h
index 95b84c5c1..da065ff6d 100644
--- a/src/lib/asn1/asn1_obj.h
+++ b/src/lib/asn1/asn1_obj.h
@@ -19,7 +19,7 @@ class DER_Encoder;
/**
* ASN.1 Type and Class Tags
*/
-enum ASN1_Tag {
+enum ASN1_Tag : uint32_t {
UNIVERSAL = 0x00,
APPLICATION = 0x40,
CONTEXT_SPECIFIC = 0x80,