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