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