Check for pointer-sign before using it.
[libtasn1.git] / NEWS
blob568698626f2f0426a23c639555dabcc9f6cae42e
1 Version 0.3.4 (unreleased)
2 - Really fix encodings.
3 - Add new self test, tests/Test_encoding.c.
5 Version 0.3.3 (released 2006-05-07)
6 - Add some 'const' to prototypes.
7 - Remove some 'unsigned' keywords.
8 - Corrected asn1_der_coding() bug introduced when it became reentrant.
9   Now it produces correct encodings.
11 Version 0.3.2
12 - Corrected bug in asn1_der_coding() which overwrited some
13   data in the original structure.
14 - The asn1Parser, asn1Coding and asn1Decoding programs are now installed.
16 Version 0.3.1
17 - Support constant size bit strings, as in 'BIT STRING (SIZE(42))'.
18   Reported by Cyril Holweck <cyril.holweck@q-free.com>.
19 - Add two more APIs required by GnuTLS.
20 - New public APIs:
21   asn1_find_node function
22   asn1_copy_node
24 Version 0.3.0
25 - Export DER utility functions, mostly so that GnuTLS can avoid using
26   libtasn1 internals.
27 - The _asn1* symbols are not exported in the shared library file (when
28   using GNU ld).
29 - The library can now be built using Visual Studio, and the project
30   files are included in windows/.
31 - New public APIs:
32   asn1_get_tag_der
33   asn1_octet_der
34   asn1_get_octet_der
35   asn1_bit_der
36   asn1_get_bit_der
37   asn1_get_length_der
38   asn1_length_der
40 Version 0.2.18
41 - Fix out-of-bounds access in DER decoding, reported by Evgeny Legerov.
42 - Add 'const' keyword to some prototypes, thanks to Frediano ZIGLIO.
43 - Fixed typo in src/Makefile.am to make it build with objdir != srcdir,
44   thanks to Bernard Leak.
45 - Update of gnulib files.
46 - Typo fixes in comments, e.g. finish libasn1 to libtasn1 renaming,
47   use LGPL boiler plate on some files in lib/.
49 Version 0.2.17
50 - Fixed typo to make it build.
52 Version 0.2.16
53 - Version script added again.
55 Version 0.2.15
56 - Gnulib is used to implement memmove if your system does not have it.
57 - Simplified assert/error handling slightly.
59 Version 0.2.14
60 - Some build fixes.
61 - Pkg-config script 'libtasn1.pc' added.
62 - Postal address to FSF in license updated.
64 Version 0.2.13
65 - Version number in libtasn1.h updated properly.
67 Version 0.2.12
68 - Manual converted to Texinfo format.
69 - Manual in GTK-DOC and DevHelp formats added.
70 - Man pages for all functions added.
71 - Various internal cleanups.
73 Version 0.2.11
74 - Added the self test with "make check" target
75 - Added management of ANY type with null length
76 - Corrected some writes to invalid data.
78 Version 0.2.10
79 - Added scripts to assist in libtasn1 version detection
80   from configure scripts.
81 - Corrected a DER decoding bug which was reported
82   by Max Vozeler <max@hinterhof.net>.
84 Version 0.2.9
85 - Accept negative numbers as range in INTEGER declarations
87 Version 0.2.8
88 - Add asn1_delete_element function
90 Version 0.2.7
91 - Added versioned symbols.
93 Version 0.2.6
94 - ASN.1 parser accepts these kinds of integer definitions:
95   "INTEGER (5 | 10)" and
96   "INTEGER (5)"
97 - Comments start at "--" and finish at the "end of line" or
98   with another "--". 
100 Version 0.2.5
101 - Bug fix in ordering procedure for SET OF and SEQUENCE OF
102   types coding.
103 - Manage structured format (BER encoding) in
104   asn1_der_decoding, asn1_decoding_element and 
105   asn1_der_decoding_startEnd for OCTET STRING type.
106 - Manage SEQUENCE and SET empty structure. 
107 - Manage "indefinite length method" in asn1_der_decoding,
108   asn1_decoding_element and asn1_der_decoding_startEnd 
109   for the following types:
110   SEQUENCE, SEQUENCE OF, SET, and SET OF.
111 - Bug fix in asn1_read_value with NULL parameter in case
112   of BIT STRING
114 Version 0.2.4
115 - Bug fix in asn1_der_coding with NULL parameter
116 - Manage DEFAULT option with OBJECT IDENTIFIER
118 Version 0.2.3
119 - Chenge asn1_find_structure_from_oid prototype
120 - Chenge asn1_find_structure_from_oid prototype
121 - Add ASN1_MEM_ALLOC_ERROR return value
123 Version 0.2.2
124 - Add vector length check in asn1_der_coding function
125 - Add vector length check in asn1_der_coding function
126 - Add vector length check in asn1_read_value function
127 - Add asn1_check_version function
129 Version 0.2.1
130 - Add asn1_find_structure_from_oid function
131 - Add asn1_read_tag function
133 Version 0.2.0
134 - Support for other platforms
135 - Change asn1_create_element function interface (dest_name not needed any more)
136 - Change OBJECT IDENTIFIER syntax: numbers must be separated by dot in 
137   asn1_write_element and asn1_read_element functions (e.g. "1.2.3.4")
139 Version 0.1.2
140 - Added GeneralString type
141 - Fixed a DER encoding bug when nested tags are used
143 Version 0.1.1
144 - Renamed to libtasn1
145 - Functions which return a string for error description
146   now accept a NULL argument.
147 - License is now GNU Lesser GPL
149 Version 0.1.0
150 - Initial release