X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=pyderasn.py;h=bb62acb437c203fa31ee66e03d6789e302a59fdd;hb=bfce27caa529762d95ad2e4b02506d7eec7fe3bf;hp=4a27bbe5e1c5222388bf4fc4056b250ac6447e67;hpb=6ffa181faaed35d38e9057c473363b5b6e44efd6;p=pyderasn.git diff --git a/pyderasn.py b/pyderasn.py index 4a27bbe..bb62acb 100755 --- a/pyderasn.py +++ b/pyderasn.py @@ -4784,6 +4784,8 @@ class UTF8String(CommonString): class AllowableCharsMixin: + __slots__ = () + @property def allowable_chars(self): return frozenset(chr(c) for c in self._allowable_chars) @@ -4795,6 +4797,9 @@ class AllowableCharsMixin: return value +NUMERIC_ALLOWABLE_CHARS = frozenset(digits.encode("ascii") + b" ") + + class NumericString(AllowableCharsMixin, CommonString): """Numeric string @@ -4804,11 +4809,14 @@ class NumericString(AllowableCharsMixin, CommonString): >>> NumericString().allowable_chars frozenset(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ' ']) """ - __slots__ = () + __slots__ = ("_allowable_chars",) tag_default = tag_encode(18) encoding = "ascii" asn1_type_name = "NumericString" - _allowable_chars = frozenset(digits.encode("ascii") + b" ") + + def __init__(self, *args, **kwargs): + self._allowable_chars = NUMERIC_ALLOWABLE_CHARS + super().__init__(*args, **kwargs) PrintableStringState = namedtuple( @@ -4818,6 +4826,11 @@ PrintableStringState = namedtuple( ) +PRINTABLE_ALLOWABLE_CHARS = frozenset( + (ascii_letters + digits + " '()+,-./:=?").encode("ascii") +) + + class PrintableString(AllowableCharsMixin, CommonString): """Printable string @@ -4830,13 +4843,10 @@ class PrintableString(AllowableCharsMixin, CommonString): >>> obj.allow_asterisk, obj.allow_ampersand (True, False) """ - __slots__ = () + __slots__ = ("_allowable_chars",) tag_default = tag_encode(19) encoding = "ascii" asn1_type_name = "PrintableString" - _allowable_chars = frozenset( - (ascii_letters + digits + " '()+,-./:=?").encode("ascii") - ) _asterisk = frozenset("*".encode("ascii")) _ampersand = frozenset("&".encode("ascii")) @@ -4857,11 +4867,13 @@ class PrintableString(AllowableCharsMixin, CommonString): :param allow_asterisk: allow asterisk character :param allow_ampersand: allow ampersand character """ + allowable_chars = PRINTABLE_ALLOWABLE_CHARS if allow_asterisk: - self._allowable_chars |= self._asterisk + allowable_chars |= self._asterisk if allow_ampersand: - self._allowable_chars |= self._ampersand - super(PrintableString, self).__init__( + allowable_chars |= self._ampersand + self._allowable_chars = allowable_chars + super().__init__( value, bounds, impl, expl, default, optional, _decoded, ctx, ) @@ -4930,6 +4942,11 @@ class VideotexString(CommonString): asn1_type_name = "VideotexString" +IA5_ALLOWABLE_CHARS = frozenset(b"".join( + chr(c).encode("ascii") for c in range(128) +)) + + class IA5String(AllowableCharsMixin, CommonString): """IA5 string @@ -4944,13 +4961,14 @@ class IA5String(AllowableCharsMixin, CommonString): >>> IA5String().allowable_chars frozenset(["NUL", ... "DEL"]) """ - __slots__ = () + __slots__ = ("_allowable_chars",) tag_default = tag_encode(22) encoding = "ascii" asn1_type_name = "IA5" - _allowable_chars = frozenset(b"".join( - chr(c).encode("ascii") for c in range(128) - )) + + def __init__(self, *args, **kwargs): + self._allowable_chars = IA5_ALLOWABLE_CHARS + super().__init__(*args, **kwargs) LEN_YYMMDDHHMMSSZ = len("YYMMDDHHMMSSZ") @@ -4961,6 +4979,11 @@ LEN_YYYYMMDDHHMMSSZ = len("YYYYMMDDHHMMSSZ") LEN_LEN_YYYYMMDDHHMMSSZ = len_encode(LEN_YYYYMMDDHHMMSSZ) +VISIBLE_ALLOWABLE_CHARS = frozenset(b"".join( + chr(c).encode("ascii") for c in range(ord(" "), ord("~") + 1) +)) + + class VisibleString(AllowableCharsMixin, CommonString): """Visible string @@ -4970,13 +4993,14 @@ class VisibleString(AllowableCharsMixin, CommonString): >>> VisibleString().allowable_chars frozenset([" ", ... "~"]) """ - __slots__ = () + __slots__ = ("_allowable_chars",) tag_default = tag_encode(26) encoding = "ascii" asn1_type_name = "VisibleString" - _allowable_chars = frozenset(b"".join( - chr(c).encode("ascii") for c in range(ord(" "), ord("~") + 1) - )) + + def __init__(self, *args, **kwargs): + self._allowable_chars = VISIBLE_ALLOWABLE_CHARS + super().__init__(*args, **kwargs) class ISO646String(VisibleString): @@ -6083,7 +6107,9 @@ SequenceState = namedtuple( ) -class SequenceEncode1stMixing: +class SequenceEncode1stMixin: + __slots__ = () + def _encode1st(self, state): state.append(0) idx = len(state) - 1 @@ -6095,7 +6121,7 @@ class SequenceEncode1stMixing: return len(self.tag) + len_size(vlen) + vlen, state -class Sequence(SequenceEncode1stMixing, Obj): +class Sequence(SequenceEncode1stMixin, Obj): """``SEQUENCE`` structure type You have to make specification of sequence:: @@ -6593,7 +6619,7 @@ class Sequence(SequenceEncode1stMixing, Obj): yield pp -class Set(Sequence, SequenceEncode1stMixing): +class Set(Sequence, SequenceEncode1stMixin): """``SET`` structure type Its usage is identical to :py:class:`pyderasn.Sequence`. @@ -6796,7 +6822,7 @@ SequenceOfState = namedtuple( ) -class SequenceOf(SequenceEncode1stMixing, Obj): +class SequenceOf(SequenceEncode1stMixin, Obj): """``SEQUENCE OF`` sequence type For that kind of type you must specify the object it will carry on