| Index: third_party/google-endpoints/pyasn1/type/char.py
|
| diff --git a/third_party/google-endpoints/pyasn1/type/char.py b/third_party/google-endpoints/pyasn1/type/char.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..af49ab3ef58be776e44b0f068e59e430f012d77a
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/pyasn1/type/char.py
|
| @@ -0,0 +1,64 @@
|
| +# ASN.1 "character string" types
|
| +from pyasn1.type import univ, tag
|
| +
|
| +class NumericString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 18)
|
| + )
|
| +
|
| +class PrintableString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 19)
|
| + )
|
| +
|
| +class TeletexString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 20)
|
| + )
|
| +
|
| +class T61String(TeletexString): pass
|
| +
|
| +class VideotexString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 21)
|
| + )
|
| +
|
| +class IA5String(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 22)
|
| + )
|
| +
|
| +class GraphicString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 25)
|
| + )
|
| +
|
| +class VisibleString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 26)
|
| + )
|
| +
|
| +class ISO646String(VisibleString): pass
|
| +
|
| +class GeneralString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 27)
|
| + )
|
| +
|
| +class UniversalString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 28)
|
| + )
|
| + encoding = "utf-32-be"
|
| +
|
| +class BMPString(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 30)
|
| + )
|
| + encoding = "utf-16-be"
|
| +
|
| +class UTF8String(univ.OctetString):
|
| + tagSet = univ.OctetString.tagSet.tagImplicitly(
|
| + tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 12)
|
| + )
|
| + encoding = "utf-8"
|
|
|