1 Version 1.5 (unreleased)
3 - Fix memory leaks, from Christian Grothoff <christian@grothoff.org>.
5 Version 1.4 (released 2008-04-21)
7 - Replace uses of alloca with malloc.
9 Version 1.3 (released 2008-02-01)
10 - Handle 'INTEGER { ... } (a..b)' regression.
11 Revert parts of earlier fix. asn1Parser can now again parse src/pkix.asn1.
12 The ASN1.c file was generated using Bison 2.3.
13 - Move examples from src/ to new directory examples/.
14 - Duplicate copy of divergated pkix.asn removed.
15 - Merge unnecessary lib/defines.h into lib/int.h.
16 - Configure no longer tries to use gcc -pipe.
17 - Update gnulib files.
18 - Fix mem leak in self-test.
20 Version 1.2 (released 2007-12-10)
21 - Update gnulib files.
23 Version 1.1 (released 2007-08-31)
24 - Fix bug that made asn1_check_version believe that 1.0 is older than 0.3.10.
26 Version 1.0 (released 2007-08-31)
27 - The self-tests, command line tools and build infrastructure have
28 been re-licensed from GPLv2 to GPLv3.
30 - Update gnulib files.
32 Version 0.3.10 (released 2007-05-25)
33 - Update gnulib files.
35 Version 0.3.9 (released 2007-03-02)
36 - In generated code, config.h is pulled in if HAVE_CONFIG_H.
37 - Development changes: changed from CVS to GIT as an experiment.
38 I push my changes to <http://repo.or.cz/w/libtasn1.git>.
39 - Autoconf 2.61 and automake 1.10 is required.
41 Version 0.3.8 (released 2006-11-16)
42 - Fix reading of binary files in asn1Decoding, for Windows.
44 Version 0.3.7 (released 2006-10-19)
45 - When asn1_der_coding encoded a TYPE_NULL and the output buffer is
46 NULL, it would not increment the counter properly, so the size of
47 the required buffer would be off by one. Fixed. Reported by
48 Stephen Wrobleski <steve@localtoast.org>.
49 - Fix configure to respect user-definable flags. Reported by "Diego
50 'Flameeyes' Pettenò" <flameeyes@gentoo.org>.
51 - The --help and --version outputs from the tools have been improved.
53 Version 0.3.6 (released 2006-08-13)
54 - Fix man pages to use \- instead of - for negative signs (as in "-1").
55 - Add -I's when building in src/, so that unistd.h etc is found on
56 systems that doesn't have them.
57 - Valgrind isn't used for cross-compilation by default, and there is
58 also --disable-valgrind-tests to unconditionally disable it.
59 - Valgrind is invoked without parameters, put things you like into
60 ~/.valgrindrc instead.
62 Version 0.3.5 (released 2006-06-27)
63 - Fix asn1_octet_der to handle writes of zero-length buffers, before
64 it did not write the ASN.1 length for a zero-length buffer. This caused
65 ASN.1 encodings to be incorrect on 64-bit platforms.
66 - Add self test that attempt to trigger the above bug.
67 - Fix test of -Wno-pointer-sign.
68 - Improve cross-compilation to MinGW by using AC_LIBTOOL_WIN32_DLL.
70 Version 0.3.4 (released 2006-05-10)
71 - Really fix encodings.
72 - Add new self test, tests/Test_encoding.c.
73 - Self tests are ran under valgrind, if it is available.
74 - We test for the -Wno-pointer-sign parameter before using it.
76 Version 0.3.3 (released 2006-05-07)
77 - Add some 'const' to prototypes.
78 - Remove some 'unsigned' keywords.
79 - Corrected asn1_der_coding() bug introduced when it became reentrant.
80 Now it produces correct encodings.
83 - Corrected bug in asn1_der_coding() which overwrited some
84 data in the original structure.
85 - The asn1Parser, asn1Coding and asn1Decoding programs are now installed.
88 - Support constant size bit strings, as in 'BIT STRING (SIZE(42))'.
89 Reported by Cyril Holweck <cyril.holweck@q-free.com>.
90 - Add two more APIs required by GnuTLS.
92 asn1_find_node function
96 - Export DER utility functions, mostly so that GnuTLS can avoid using
98 - The _asn1* symbols are not exported in the shared library file (when
100 - The library can now be built using Visual Studio, and the project
101 files are included in windows/.
112 - Fix out-of-bounds access in DER decoding, reported by Evgeny Legerov.
113 - Add 'const' keyword to some prototypes, thanks to Frediano ZIGLIO.
114 - Fixed typo in src/Makefile.am to make it build with objdir != srcdir,
115 thanks to Bernard Leak.
116 - Update of gnulib files.
117 - Typo fixes in comments, e.g. finish libasn1 to libtasn1 renaming,
118 use LGPL boiler plate on some files in lib/.
121 - Fixed typo to make it build.
124 - Version script added again.
127 - Gnulib is used to implement memmove if your system does not have it.
128 - Simplified assert/error handling slightly.
132 - Pkg-config script 'libtasn1.pc' added.
133 - Postal address to FSF in license updated.
136 - Version number in libtasn1.h updated properly.
139 - Manual converted to Texinfo format.
140 - Manual in GTK-DOC and DevHelp formats added.
141 - Man pages for all functions added.
142 - Various internal cleanups.
145 - Added the self test with "make check" target
146 - Added management of ANY type with null length
147 - Corrected some writes to invalid data.
150 - Added scripts to assist in libtasn1 version detection
151 from configure scripts.
152 - Corrected a DER decoding bug which was reported
153 by Max Vozeler <max@hinterhof.net>.
156 - Accept negative numbers as range in INTEGER declarations
159 - Add asn1_delete_element function
162 - Added versioned symbols.
165 - ASN.1 parser accepts these kinds of integer definitions:
166 "INTEGER (5 | 10)" and
168 - Comments start at "--" and finish at the "end of line" or
172 - Bug fix in ordering procedure for SET OF and SEQUENCE OF
174 - Manage structured format (BER encoding) in
175 asn1_der_decoding, asn1_decoding_element and
176 asn1_der_decoding_startEnd for OCTET STRING type.
177 - Manage SEQUENCE and SET empty structure.
178 - Manage "indefinite length method" in asn1_der_decoding,
179 asn1_decoding_element and asn1_der_decoding_startEnd
180 for the following types:
181 SEQUENCE, SEQUENCE OF, SET, and SET OF.
182 - Bug fix in asn1_read_value with NULL parameter in case
186 - Bug fix in asn1_der_coding with NULL parameter
187 - Manage DEFAULT option with OBJECT IDENTIFIER
190 - Chenge asn1_find_structure_from_oid prototype
191 - Chenge asn1_find_structure_from_oid prototype
192 - Add ASN1_MEM_ALLOC_ERROR return value
195 - Add vector length check in asn1_der_coding function
196 - Add vector length check in asn1_der_coding function
197 - Add vector length check in asn1_read_value function
198 - Add asn1_check_version function
201 - Add asn1_find_structure_from_oid function
202 - Add asn1_read_tag function
205 - Support for other platforms
206 - Change asn1_create_element function interface (dest_name not needed any more)
207 - Change OBJECT IDENTIFIER syntax: numbers must be separated by dot in
208 asn1_write_element and asn1_read_element functions (e.g. "1.2.3.4")
211 - Added GeneralString type
212 - Fixed a DER encoding bug when nested tags are used
215 - Renamed to libtasn1
216 - Functions which return a string for error description
217 now accept a NULL argument.
218 - License is now GNU Lesser GPL