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