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