]> Cypherpunks.ru repositories - pyderasn.git/blob - doc/news.rst
Streaming of huge data support
[pyderasn.git] / doc / news.rst
1 News
2 ====
3
4 .. _release7.0:
5
6 7.0
7 ---
8 * Fixed invalid behaviour where SET OF allowed multiple objects with the
9   same tag to be successfully decoded
10 * Fixed possibly invalid SET DER encoding where objects were not sorted
11   by tag, but by encoded representation
12 * ``Any`` does not allow empty data value now. Now it checks if it has
13   valid ASN.1 tag
14 * ``Any`` allows an ordinary ``Obj`` storing, without its forceful
15   encoded representation storage
16 * Initial support for so called ``evgen_mode``: event generation mode,
17   where no in-memory objects storing happens, giving ability to process
18   ASN.1 data without fully parsing it first. ``python -m pyderasn`` has
19   ``--evgen`` mode switcher
20 * Useful ``agg_octet_string`` that is able to streamingly decode string
21   from events of ``evgen_mode``, allowing strings retrieving without
22   copying them to memory first
23 * Initial experimental CER encoding mode, allowing streaming encoding of
24   the data directly to some writeable object
25 * Ability to use mmap-ed memoryviews to skip files loading to memory
26 * Ability to use memoryview as an input for \*Strings. If they are
27   mmap-ed, then you can encode any quantities of data streamingly
28   without copying to memory
29
30 .. _release6.3:
31
32 6.3
33 ---
34 * Fixed workability under Python 3.5. Previously only 2.7 and 3.6
35   versions were tested
36
37 .. _release6.2:
38
39 6.2
40 ---
41 * Python ``int()``'s accepts even more various non-decimal characters
42   than expected. Make validation fully strict in UTCTime and
43   GeneralizedTime, without relying on ``int()``
44
45 .. _release6.1:
46
47 6.1
48 ---
49 * UTCTime and GeneralizedTime allowed values to have plus sign in them,
50   passing int() check successfully. Prohibit that incorrect behaviour
51 * UTCTime and GeneralizedTime BER decoding support
52 * Faster UTCTime and GeneralizedTime decoding, and slightly better
53   overall performance
54 * Workability under Cython
55 * Explicitly Check that all ObjectIdentifier arcs are non-negative
56
57 .. _release6.0:
58
59 6.0
60 ---
61 * ``.copy()`` method removed: ``copy.copy()`` is preferred way to copy
62   objects now
63 * Copies made previously with ``.copy()`` lacked ``.defined`` field,
64   now they are not
65 * All objects are friendly to ``pickle`` libraries
66 * PrintableString has ``allow_asterisk`` and ``allow_ampersand``
67   properties
68 * ``.hexencode()``, ``.hexdecode()`` and ``.hexdecod()`` methods
69   appeared, working with hexadecimal encoded data
70
71 .. _release5.6:
72
73 5.6
74 ---
75 * Convenient ``.decod()`` method, that raises if tail is not empty
76 * Control characters (like newlines) of text fields in pprinted output
77   are escaped
78 * Ability to allow asterisk and ampersand characters
79   (``allow_asterisk``, ``allow_ampersand`` kwargs) in PrintableString,
80   that unfortunately could be met in X.509 certificates
81
82 .. _release5.5:
83
84 5.5
85 ---
86 * PEP-396 compatible module's ``__version__``
87
88 .. _release5.4:
89
90 5.4
91 ---
92 * Do not shadow underlying DecodeError during decoding of optional
93   sequence's field
94
95 .. _release5.3:
96
97 5.3
98 ---
99 * Forbid any later GNU GPL version autousage (project's licence now is
100   GNU LGPLv3 only)
101 * Fix ``defines_by_path`` context option usage example
102
103 .. _release5.2:
104
105 5.2
106 ---
107 * Fix fallbacked ``colored()`` function workability,
108   if no ``termcolor`` is installed
109
110 .. _release5.1:
111
112 5.1
113 ---
114 * Fix empty ``--oids`` workability
115
116 .. _release5.0:
117
118 5.0
119 ---
120 * Ability to specify multiple OID mappings for pprinted output
121   (``oids`` keyword argument is renamed to ``oid_maps``)
122
123 .. _release4.9:
124
125 4.9
126 ---
127 * Minor decode speed improvements
128 * Much faster UTCTime/GeneralizedTime decoders
129 * Stricter UTCTime/GeneralizedTime DER encoding check: trailing zeroes
130   are forbidden
131 * Valid DER encoding of GeneralizedTime with microseconds: no trailing
132   zeroes appended
133
134 .. _release4.7:
135
136 4.7
137 ---
138 * ObjectIdentifier has ``ber_encoded`` set to True, if non-normalized
139   arc encoding is met
140 * Preserve BER-related attributes during ``copy()``
141
142 .. _release4.6:
143
144 4.6
145 ---
146 * Added `COMPLI <https://github.com/YuryStrozhevsky/asn1-test-suite>`__
147   ASN.1:2008 test suite. PyDERASN passes it (except for REAL values),
148   but it is more strict sometimes and aimed to be compliant with X.690-201508
149 * Check for arc values normalization in ObjectIdentifier.
150   Forbid non-normalized in DER encoding
151
152 .. _release4.5:
153
154 4.5
155 ---
156 * ``ctx`` parameter can be safely used in .decode() and won't be muted
157 * PP nametuple contains reference to the ASN1Obj itself
158 * ``colonize_hex`` function useful for pretty printing
159 * Integer values are also pretty printed in hexadecimal form
160
161 .. _release4.4:
162
163 4.4
164 ---
165 * All errors are inherited from ASN1Error class
166 * NumericString/PrintableString has ``allowable_chars`` property holding
167   all allowed characters
168
169 .. _release4.3:
170
171 4.3
172 ---
173 * Fix NumericString: space is allowed character
174 * Strict PrintableString sanitizing
175
176 .. _release4.2:
177
178 4.2
179 ---
180 * Removed ``lenindef``, ``ber_encoded`` attributes from the Choice --
181   they must be taken from underlying value, as Choice does not have its
182   own encoding
183 * Do not yield extra EOC PP for Any, having indefinite length encoding
184   and containing autodecoded DEFINED BY value
185
186 .. _release4.1:
187
188 4.1
189 ---
190 * ``bered`` attribute, meaning if object has BER-specific encoding, is
191   renamed to ``ber_encoded``
192 * ``bered`` attribute is replace with property showing if any of
193   underlying values are BER-encoded. If value has length indefinite
194   encoded explicit tag, value, if value contains BER-related encoding,
195   or if it contains other objects that are ``bered``, then it is ``bered``
196
197 .. _release4.0:
198
199 4.0
200 ---
201 * Default value is checked also for Sets, not for Sequences only
202 * **Incompatible** change: defaulted values in Sequence/Set are always
203   strictly checked, unless ``allow_default_values`` context option is
204   set. ``strict_default_existence`` option disappeared
205 * Strict Set/Set Of's values ordering check
206
207 .. _release3.14:
208
209 3.14
210 ----
211 * Additional encoding validness check: explicit tag must contain exactly
212   one object inside. Throw DecodeError otherwise
213 * ``allow_expl_oob`` context and command-line options allow skipping of
214   that check
215
216 .. _release3.13:
217
218 3.13
219 ----
220 * DecodeError's decode paths are separated with ``:``, instead of ``.``,
221   because of colliding with dots in OIDs
222 * Ability to print element decode paths with ``--print-decode-path``
223   command line option (and corresponding keyword argument)
224 * Ability to print tree's branch specified with ``--decode-path-only``
225
226 .. _release3.12:
227
228 3.12
229 ----
230 * Fix possible uncaught TypeError in Py2 with zero bytes inside the value
231 * Fix SequenceOf/SetOf raising BoundsError instead of DecodeError
232
233 .. _release3.11:
234
235 3.11
236 ----
237 * Fix uncaught UTCTime/GeneralizedTime decode error when dealing with
238   non ASCII-encoded values
239
240 .. _release3.10:
241
242 3.10
243 ----
244 * Fix long-standing bug with explicitly tagged objects inside the
245   Choice. If Choice had explicitly tagged value, then its ``.tlvlen``
246   reports the size without taking value's explicit tag in advance
247 * Add ``.fulllen`` and ``.fulloffset`` properties for all objects
248
249 .. _release3.9:
250
251 3.9
252 ---
253 * SEQUENCE's values are printed with field's name. Previously there was
254   the following output::
255
256     AlgorithmIdentifier SEQUENCE[OBJECT IDENTIFIER 1.3.14.3.2.26, [UNIV 5] ANY 0500 OPTIONAL]
257
258   now it is::
259
260     AlgorithmIdentifier SEQUENCE[algorithm: OBJECT IDENTIFIER 1.3.14.3.2.26; parameters: [UNIV 5] ANY 0500 OPTIONAL]
261 * Fixed EOC (Unicode character) repr printing issues under Python2
262
263 .. _release3.8:
264
265 3.8
266 ---
267 BER's EOC is explicitly shown during pprinting. Following notation::
268
269       15-2 [0,0,1576]-4  . content: [0] EXPLICIT [UNIV 16] ANY
270
271 is replaced with::
272
273       15-2∞ [0,0,1576]∞  . content: [0] EXPLICIT [UNIV 16] ANY
274     [...]
275     1587    [1,1,   0]   . content:  BER EOC
276     1589    [1,1,   0]   . content: EXPLICIT BER EOC
277
278 .. _release3.7:
279
280 3.7
281 ---
282 * BER decoding support
283 * BitString's ''H notation support
284 * ``termcolor`` package is included in the tarball
285
286 .. _release3.6:
287
288 3.6
289 ---
290 * Ability to set values during Sequence initialization
291
292 .. _release3.5:
293
294 3.5
295 ---
296 * Fix TagMismatch exception completeness during Choice and Set decoding.
297   Previously we will loose offset and decode_path information about
298   concrete TagMismatched entity
299
300 .. _release3.4:
301
302 3.4
303 ---
304 * Strict NumericString's value sanitation
305 * Invalid encoding in string types will raise ``DecodeError`` exception,
306   instead of ``Unicode*Error``
307 * Fixed DecodePathDefBy workability with Python 2.x
308
309 .. _release3.3:
310
311 3.3
312 ---
313 * Fix nasty BitString decoding bug: it could fail when data follows
314   encoded BitString value. There weren't any problems when BitString is
315   at the end of Sequence
316
317 .. _release3.2:
318
319 3.2
320 ---
321 * Slightly corrected colours, now visible on white background
322
323 .. _release3.1:
324
325 3.1
326 ---
327 * Fix bug related to DecodeError showing with DecodePathDefBy entities
328 * Respect ``NO_COLOR`` environment variable
329
330 .. _release3.0:
331
332 3.0
333 ---
334 * :py:func:`pyderasn.decode_path_defby` is replaced with
335   :py:class:`pyderasn.DecodePathDefBy`
336 * Ability to turn colourized terminal output by calling
337   ``pprint(..., with_colours=True)``. You will need
338   `termcolor package <https://pypi.org/project/termcolor/>`__
339
340 .. _release2.1:
341
342 2.1
343 ---
344 * Fixed invalid offset calculation when dealing with DEFINED BY objects
345   having explicit tags
346
347 .. _release2.0:
348
349 2.0
350 ---
351 * BIT STRINGs can also be :ref:`DEFINED BY <definedby>`
352 * Decoding process can be governed with optional :ref:`ctx <ctx>`
353   keyword argument to ``decode()`` method
354 * :ref:`defines_by_path <defines_by_path_ctx>` option is now
355   :ref:`decode context <ctx>` option, not a keyword argument
356 * Ability to do ``strict validation``
357   of defaulted values met in sequence, raising an exception
358
359 .. _release1.6:
360
361 1.6
362 ---
363 Ability to skip specified number of bytes (``--skip``) in command line
364 utility.
365
366 .. _release1.5:
367
368 1.5
369 ---
370 * Generic decoder's schema and pretty printer
371   (:py:func:`pyderasn.generic_decoder`) can be used in libraries
372 * Ability to specify :ref:`defines_by_path <defines_by_path_ctx>`
373   during command line invocation
374
375 .. _release1.4:
376
377 1.4
378 ---
379 Ability to automatically decode :ref:`DEFINED BY <definedby>` fields
380 inside SEQUENCEs.
381
382 .. _release1.3:
383
384 1.3
385 ---
386 Removed ``__lt__``/``__eq__`` from base class, as pylint likes it.
387
388 .. _release1.2:
389
390 1.2
391 ---
392 Full rich comparison operators added.
393
394
395 .. _release1.1:
396
397 1.1
398 ---
399 Trivial README addition.
400
401 .. _release1.0:
402
403 1.0
404 ---
405 Initial release.