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