diff options
Diffstat (limited to 'net/base/asn1_util.h')
-rw-r--r-- | net/base/asn1_util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/base/asn1_util.h b/net/base/asn1_util.h index aef1ec9..eb2d473 100644 --- a/net/base/asn1_util.h +++ b/net/base/asn1_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -17,6 +17,7 @@ namespace asn1 { // These are the DER encodings of the tag byte for ASN.1 objects. static const unsigned kBOOLEAN = 0x01; static const unsigned kINTEGER = 0x02; +static const unsigned kBITSTRING = 0x03; static const unsigned kOCTETSTRING = 0x04; static const unsigned kOID = 0x06; static const unsigned kSEQUENCE = 0x30; |