diff options
author | Jack Lloyd <[email protected]> | 2017-11-15 16:49:29 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-11-15 16:49:29 -0500 |
commit | be4415ebb69a4232605d71f2a6b7df2d1cb114ee (patch) | |
tree | c9cd59c9d42d6a185d172a0b12a6d38f3e270087 /src/lib | |
parent | 24a5d0688748abe132b602995a993e5d0bc7d455 (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.h | 2 |
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, |