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