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