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