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