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