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