aboutsummaryrefslogtreecommitdiff
path: root/pyasn1/codec
AgeCommit message (Collapse)Author
2019-08-25Add `isInconsistent` property hook to all constructed types (#170)Ilya Etingof
Added `isInconsistent` property to all constructed types. This property conceptually replaces `verifySizeSpec` method to serve a more general purpose e.g. ensuring all required fields are in a good shape. By default this check invokes subtype constraints verification and is run by codecs on value de/serialisation.
2019-07-13Document base ASN.1 typesIlya Etingof
Also many fixes here and there to docs and docstrings.
2019-07-13Fix Python builtins ReST references in docstringsIlya Etingof
2019-07-13Add exception classes documentationIlya Etingof
Also fix references to exception objects in other docstrings.
2019-07-12Fix to pass decoder `options` to open type decoderIlya Etingof
Prior to this fix, recursively encoded open types won't get fully decoded all the way.
2019-07-12Fix CER/DER encoders to respect open types (#167)Ilya Etingof
* Fix CER/DER encoders to respect open types Added a bunch of unit tests to CER/DER codecs covering open types.
2019-07-06Add `SET|SEQUENCE OF ANY` encoding support (#165)Ilya Etingof
For example: AttributeTypeAndValues ::= SEQUENCE { type OBJECT IDENTIFIER, values SET OF ANY DEFINED BY type } This patch adds support of the above ASN.1 syntax to BER/DER/CER codecs. It appears that to implement this feature properly, `SetOf`/`SequenceOf` pyasn1 types need to have `.componentType` wrapped into something similar to `NamedType` that `Set`/`Sequence` have. That additional layer would then carry the open type meta information. Without it, `Sequence`/`Set` codec needs to signal `SetOf`/`SequenceOf` codec of the open type being processed, which is a slight hack. A other inconvenience is that when `SetOf`/`SequenceOf` deal with an open type component, they should not verify types on component assignment. Without open type property in `SetOf`/`SequenceOf`, the code checks for `Any` component type which is another hack. The above shortcomings should be addressed in the follow up patch.
2019-06-30Improve CER/DER encoding of GeneralizedTime (#164)Ilya Etingof
- Added support for subseconds CER/DER encoding edge cases in `GeneralizedTime` codec - Fixed 3-digit fractional seconds value CER/DER encoding of `GeneralizedTime`
2019-06-28Fix `AnyDecoder` to accept `TagMap` as `asn1Spec` (#152)Ilya Etingof
Fixes `AnyDecoder` to accept `TagMap` as `asn1Spec`. The use-case is to make `AnyDecoder` operational when dumping raw value on error condition is enabled
2019-06-23SequenceOf/SetOf to remain a schema objects (#162)Ilya Etingof
* Add `omitEmptyOptionals` encoder option Added `omitEmptyOptionals` option which is respected by `Sequence` and `Set` encoders. When `omitEmptyOptionals` is set to `True`, empty initialized optional components are not encoded. Default is `False`. * Change `SequenceOf`/`SetOf` behaviour - New elements to `SequenceOf`/`SetOf` objects can now be added at any position - the requirement for the new elements to reside at the end of the existing ones (i.e. s[len(s)] = 123) is removed. - Removed default initializer from `SequenceOf`/`SetOf` types to ensure consistent behaviour with the rest of ASN.1 types. Before this change, `SequenceOf`/`SetOf` instances immediately become value objects behaving like an empty list. With this change, `SequenceOf`/`SetOf` objects remain schema objects unless a component is added or `.clear()` is called. - Added `.reset()` method to all constructed types to turn value object into a schema object.
2018-12-29Release 0.4.5Ilya Etingof
Also extend copyright to the year 2019
2018-12-29Fix encoder debugging under Py2Ilya Etingof
2018-08-04Add more debug logging to *ER codecs (#139)Ilya Etingof
More debug logging added to BER family of codecs to ease encoding problems troubleshooting. Also: * code layout made a bit more sparse * potential bug in open type decoding in indefinite mode fixed
2018-08-03Refactor debug logging (#138)Ilya Etingof
Debug logging refactored for more efficiency when disabled and for more functionality when in use. Specifically, the global LOG object can easily be used from any function/method, not just from codec main loop as it used to be.
2018-07-29Fix some typos and prepare for 0.4.5Ilya Etingof
2018-06-30Fix native encoder type map (#132)Ilya Etingof
The type map should include all ASN.1 types rather than just ambiguous ones for performance reasons. Incomplete type ID map triggers building a new TagSet out of the value being encoded. If that value does not have base tags set, that leads to a crash.
2018-03-29copyright years extendedIlya Etingof
2018-03-21Prefer https:// URLs where available (#121)Jon Dufresne
2017-11-23Fixed bad TagSet initializer at OctetString encoder (#107)Ilya Etingof
localize explicit tag slitting to chunked mode at OctetString and BitString encoders The inner chunks tagging logic is to be researched -- I'm not certain it works as it supposed to
2017-11-23imports pep8'edIlya Etingof
2017-11-23relax open type field type check on assignment (#105)Ilya Etingof
2017-11-19Start `.prettyPrint` deprecation (#103)Ilya Etingof
* __str__() of ASN.1 types reworked to serve instead of .prettyPrint() Related changes: `str()` on enumerations and boolean will return a string label rather than a number.
2017-11-14fixed Sequence/SequenceOf decoding heuristicsIlya Etingof
2017-11-14fixed openType decoding in indef modeIlya Etingof
2017-11-14migrated docs and references from sourceforge.netIlya Etingof
2017-11-14serialization -> serialisation nitpicksIlya Etingof
2017-11-14added example code snippets to the docstrings (#101)Ilya Etingof
2017-10-21Add more content to docs (#96)Ilya Etingof
* minor fixes to RsT docstrings * more explanations in the docs, better linkage * cosmetic fixes to NamedValues() docstring
2017-10-19Ditched unnecessary .clone/.subtype overrides (#94)Ilya Etingof
* rearranged `.clone()` and `.subtype()` docstrings * legacy Asn1ItemBase.prettyPrinter() method removed
2017-10-19fix to Null decoder to initialize decoded value to ''Ilya Etingof
2017-10-17fixed DER/CER encoders to respect ordering of tagged CHOICE (#93)Ilya Etingof
2017-10-17fixed encoder not to omit empty substrate for simple types (#92)Ilya Etingof
Fix to encoder to omit empty substrate only for constructed types
2017-10-16Remove None initializer support (#91)Ilya Etingof
* `None` legacy initializer support removed * Default value for `Null` removed
2017-10-11Merge branch 'devel-0.4.1' of github.com:etingof/pyasn1 into devel-0.4.1Ilya Etingof
2017-10-11Docs rearrangement (#88)Ilya Etingof
Docs rearranged, simplified and reworded, Sphinx theme changed.
2017-10-10do not attempt to decode optional open typesIlya Etingof
2017-10-04Refactored ASN.1 codecs (#83)Ilya Etingof
ASN.1 encoders can operate on pure-Python types Also, BitString decoder performance improvement
2017-09-20fixed crash on exp tagged Sequence component encoding (#79)Ilya Etingof
Also EOO encoder call replaced with a constant outcome
2017-09-17OctetString and Any encoders save on ASN.1 schema instantiationIlya Etingof
2017-09-17documented ASN.1 schema parameter to encodersIlya Etingof
2017-09-17encoders refactored to take Python types + ASN.1 schemaIlya Etingof
2017-09-17Merge branch 'master' into open-types-supportIlya Etingof
2017-09-15run unit tests with full debugging enabled (and ignored)Ilya Etingof
Also fixed a couple of crashes in debug messages
2017-09-15fixed crash at SequenceOf native decoderIlya Etingof
2017-09-14minor PEP8 editsIlya Etingof
2017-09-14Merge branch 'master' into open-types-supportIlya Etingof
2017-09-14removed stray __call__ method from CER encoderIlya Etingof
2017-09-13ASN.1 codecs to silently enforce proper length/chunk modesIlya Etingof
2017-09-13refactored OpenType() into a mutable objectIlya Etingof
2017-09-10wrap open type blob on encoding if neededIlya Etingof