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