aboutsummaryrefslogtreecommitdiff
path: root/pyasn1/codec/ber/encoder.py
AgeCommit message (Expand)Author
2019-08-25Add `isInconsistent` property hook to all constructed types (#170)Ilya Etingof
2019-07-13Fix Python builtins ReST references in docstringsIlya Etingof
2019-07-13Add exception classes documentationIlya Etingof
2019-07-12Fix CER/DER encoders to respect open types (#167)Ilya Etingof
2019-07-06Add `SET|SEQUENCE OF ANY` encoding support (#165)Ilya Etingof
2019-06-23SequenceOf/SetOf to remain a schema objects (#162)Ilya Etingof
2018-12-29Release 0.4.5Ilya Etingof
2018-12-29Fix encoder debugging under Py2Ilya Etingof
2018-08-04Add more debug logging to *ER codecs (#139)Ilya Etingof
2018-08-03Refactor debug logging (#138)Ilya Etingof
2018-07-29Fix some typos and prepare for 0.4.5Ilya Etingof
2018-03-29copyright years extendedIlya Etingof
2017-11-23Fixed bad TagSet initializer at OctetString encoder (#107)Ilya Etingof
2017-11-23imports pep8'edIlya Etingof
2017-11-14migrated docs and references from sourceforge.netIlya Etingof
2017-11-14added example code snippets to the docstrings (#101)Ilya Etingof
2017-10-21Add more content to docs (#96)Ilya Etingof
2017-10-19Ditched unnecessary .clone/.subtype overrides (#94)Ilya Etingof
2017-10-17fixed encoder not to omit empty substrate for simple types (#92)Ilya Etingof
2017-09-20fixed crash on exp tagged Sequence component encoding (#79)Ilya Etingof
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
2017-09-14minor PEP8 editsIlya Etingof
2017-09-14Merge branch 'master' into open-types-supportIlya Etingof
2017-09-13ASN.1 codecs to silently enforce proper length/chunk modesIlya Etingof
2017-09-10wrap open type blob on encoding if neededIlya Etingof
2017-09-10fixes to debug message interpolationIlya Etingof
2017-09-10end-of-octets marker encoding optimizedIlya Etingof
2017-09-10avoid coping values when encoding explicit ASN.1 tagsIlya Etingof
2017-09-09codecs signatures unified and pass **options throughIlya Etingof
2017-09-03fixed crash at Sequence BER decoderIlya Etingof
2017-07-31added recusrive OPTIONAL field supportIlya Etingof
2017-07-30better nested optional SET/SEQUENCE supportIlya Etingof
2017-07-23ASN.1 types __init__(), .clone()/.subtype() refactored into kwargsIlya Etingof
2017-07-21WIP: setup properties through metaclassIlya Etingof
2017-07-18Real type infinity states refactored into properiesIlya Etingof
2017-05-11moved logger call into local scope in tight loopsIlya Etingof
2017-04-04fix to BER encoder to accommodate undefined namedTypes in `Sequence`Ilya Etingof
2017-03-22BER/CER/DER encoder refactored to use type-ids for better performanceIlya Etingof
2017-03-12.getComponent*() changed to lazily instantiate underlying typeIlya Etingof
2017-03-07tags-related getters refactored into descriptors/propertiesIlya Etingof
2017-03-04ditch Tag.asOctets in favour of iterableIlya Etingof
2017-02-26some minor hotspots optimizationIlya Etingof
2017-02-26minor changes to reduce the number of magic methods callsIlya Etingof
2017-02-26BER/CER/DER value encoders refactored to produce either tuple of bytes or oct...Ilya Etingof
2017-02-26reduce frequence of expensive isinstance() callsIlya Etingof
2017-02-26better variable namesIlya Etingof