File: NEWS

package info (click to toggle)
libksba 0.9.9-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,588 kB
  • ctags: 1,114
  • sloc: ansic: 15,742; sh: 8,833; yacc: 859; makefile: 146; awk: 28
file content (222 lines) | stat: -rw-r--r-- 8,062 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
Noteworthy changes in version 0.9.8 (2004-07-22)
------------------------------------------------

 * Fixed a bug in the OCSP request generation.


Noteworthy changes in version 0.9.7 (2004-06-08)
------------------------------------------------

 * New API function to add arbitrary extensions to pkcs#10 requests.

 * Interface changes relative to the 0.9.6 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_certreq_add_extension           NEW.


Noteworthy changes in version 0.9.6 (2004-04-29)
------------------------------------------------

 * New API functions to support v2 CRLs.

 * Interface changes relative to the 0.9.5 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_crl_get_extension               NEW.
ksba_crl_get_auth_key_id             NEW.
ksba_crl_get_crl_number              NEW.

Noteworthy changes in version 0.9.5 (2004-04-06)
------------------------------------------------

 * New APIs to get hands on some more information.

 * Interface changes relative to the 0.9.4 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_ocsp_get_responder_id           NEW.
ksba_ocsp_get_cert                   NEW.
ksba_cert_get_authority_info_access  NEW.
ksba_cert_get_subject_info_access    NEW.
ksba_cms_add_smime_capability        NEW.
 

Noteworthy changes in version 0.9.4 (2004-02-20)
------------------------------------------------

 * Support for Extended Key Usage.

 * ksba_cms_identify may no return a pseudo content type for pkcs#12
   files.

 * Interface changes relative to the 0.9.3 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_reader_clear             NEW.
ksba_cert_get_ext_key_usages  NEW.
KSBA_CT_PKCS12                NEW.


Noteworthy changes in version 0.9.3 (2004-01-30)
------------------------------------------------

 * Fixed a serious bug shortly after the last release :-(.


Noteworthy changes in version 0.9.2 (2004-01-29)
------------------------------------------------

 * Cleaned up the DN label table.

 * Fixed a bug in creating CMS signed data.


Noteworthy changes in version 0.9.1 (2003-12-19)
------------------------------------------------

 * Support for OCSP (rfc2560).

 * The new function ksba_set_hash_buffer_function may be used during
   intialization to register a simple hash fucntion for internal use
   by libksba.

 * Changed the license of the manual to GPL.

 * Interface changes relative to the 0.9.0 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_status_t                 NEW.
ksba_ocsp_t                   NEW.
ksba_ocsp_response_status_t   NEW.
ksba_ocsp_new                 NEW.
void ksba_ocsp_release        NEW.
ksba_ocsp_set_digest_algo     NEW.
ksba_ocsp_set_requestor       NEW.
ksba_ocsp_add_target          NEW.
ksba_ocsp_set_nonce           NEW.
ksba_ocsp_prepare_request     NEW.
ksba_ocsp_hash_request        NEW.
ksba_ocsp_set_sig_val         NEW.
ksba_ocsp_add_cert            NEW.
ksba_ocsp_build_request       NEW.
ksba_ocsp_parse_response      NEW.
ksba_ocsp_get_digest_algo     NEW.
ksba_ocsp_hash_respons        NEW.
ksba_ocsp_get_sig_val         NEW.
ksba_ocsp_get_status          NEW.
ksba_set_hash_buffer_function NEW.


Noteworthy changes in version 0.9.0 (2003-11-17)
------------------------------------------------

 * The time is not any longer described by time_t but through the new
   type ksba_isotime_t which is string of excactly 15 characters in
   ISO 8601 format (e.g. "19611107T152010") and always stored as
   UTC. This is to allow representation of dates beyond the year 2038.
   Comparing is a mere strcmp.

 * All type names are nom conforming to the GNU coding standards, the
   old names are still available as aliases but flagged as deprecated.       

 * All error codes have been replaced by libgpg-error ones.  Libksba
   now depends on this package.  Remember to use the gpg_err_code
   function when testing for error values other than success.

 * Interface changes relative to the 0.4.7 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_cert_get_validity     CHANGED: Uses ksba_isotime_t instead of time_t.
ksba_crl_get_update_times  CHANGED: Uses ksba_isotime_t instead of time_t.
ksba_crl_get_item          CHANGED: Uses ksba_isotime_t instead of time_t.
ksba_cms_get_signing_time  CHANGED: Uses ksba_isotime_t instead of time_t.
ksba_cms_set_signing_time  CHANGED: Uses ksba_isotime_t instead of time_t.
ksba_cert_new              CHANGED: Returns an error code now.
ksba_cms_new               CHANGED: Returns an error code now.
ksba_name_new              CHANGED: Returns an error code now.
ksba_writer_new            CHANGED: Returns an error code now.
ksba_reader_new            CHANGED: Returns an error code now.
ksba_certreq_new           CHANGED: Returns an error code now.
ksba_crl_new               CHANGED: Returns an error code now.
ksba_isotime_t             NEW.
ksba_error_t               NEW: Should be used instead of KsbaError.
ksba_cert_t                NEW: Should be used instead of KsbaCert.
ksba_certreq_t             NEW: Should be used instead of KsbaCertreq.
ksba_cms_t                 NEW: Should be used instead of KsbaCMS.
ksba_crl_t                 NEW: Should be used instead of KsbaCRL.
ksba_name_t                NEW: Should be used instead of KsbaName.
ksba_sexp_t                NEW: Should be used instead of KsbaSexp.
ksba_reader_t              NEW: Should be used instead of KsbaReader.
ksba_writer_t              NEW: Should be used instead of KsbaWriter.
ksba_strerror              REMOVED: use gpg_strerror instead.

Noteworthy changes in version 0.4.7 (2003-03-17)
------------------------------------------------

 * Fixed type detection in creating DNs.


Noteworthy changes in version 0.4.6 (2002-12-04)
------------------------------------------------

 * DNs in pkcs#10 request are now created in reversed order as
   specified by rfc2253.

 * The content-type signed attribute is created.

 * Fixed a parser bug with a id-aa-encrypKeyPref attribute.

 * Interface changes relative to the 0.4.3 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_cms_get_sigattr_oids        NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Noteworthy changes in version 0.4.5 (2002-08-23)
------------------------------------------------

 * Removed some debugging output.  

 * Added an autoconf macro.


Noteworthy changes in version 0.4.4 (2002-08-09)
------------------------------------------------

 * Multiple signatures can now be created and parsed.


Noteworthy changes in version 0.4.3 (2002-06-25)
------------------------------------------------

 * More bug fixes.

 * Interface changes relative to the 0.4.2 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_writer_write_octet_string   NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Noteworthy changes in version 0.4.2 (2002-06-04)
------------------------------------------------

 * Some bug fixes and a new function.

 * Interface changes relative to the 0.4.1 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_cms_identify       NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Noteworthy changes in version 0.4.1 (2002-05-03)
------------------------------------------------

 * Minor fixes.

Noteworthy changes in version 0.4.0 (2002-04-15)
------------------------------------------------
 
 * Nearly all stuff needed for the Aegypten project is now in place.


 Copyright 2002 g10 Code GmbH

 This file is free software; as a special exception the author gives
 unlimited permission to copy and/or distribute it, with or without
 modifications, as long as this notice is preserved.

 This file is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.