forked from Yubico/yubikey-personalization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
297 lines (186 loc) · 9.01 KB
/
NEWS
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
Yubikey-personalize NEWS -- History of user-visible changes. -*- outline -*-
* Version 1.7.1 (unreleased)
* Version 1.7.0 (released 2012-06-07)
** Add support for new features in YubiKey 2.3:
ALLOW_UPDATE flag that allows updating of configuration in slots.
Update command (-u) to do update of existing config.
Swap command (-x) to swap contents of two updatable slots
DORMANT flag that's settable/removable if ALLOW_UPDATE is set
USE_NUMERIC_KEYPAD flag for sending the OATH OTP using keypad scan codes instead
FAST_TRIG flag for faster triggering of slot one if slot two is empty
** Change the library around some to make the 2.3 features available.
Use ykp_alloc() instead of ykp_create_config().
Use ykp_configure_version() instead of ykp_configure_for() to set the version.
Use ykp_configure_command() instead of ykp_configure_for() to set slot.
Use yk_write_command() instead of yk_write_config().
The new commands doesn't set any default configuration at all.
** Add library support for the YubiKey NEO beta
ykp_construct_ndef_uri() for preparing a URI to write.
ykp_construct_ndef_text() for preparing a text to write.
yk_write_ndef() to write the constructed NDEF.
** Add support for the YubiKey NEO beta
Writing NDEF URI with -n http://example.com/foo/
Writing NDEF Text record with -t example
** Windows: Bump yubico-c dependency to version 1.9.
** Windows: Build fixes related to self checks.
* Version 1.6.4 (released 2012-05-24)
** Implement option -ooath-id to easily set OATH token identifier.
** Fix numerous compiler warnings from clang. Thanks to
Clemens Lang <[email protected]>.
* Version 1.6.3 (released 2011-12-15)
** No real change for regular users. Fix a bug in a test case for
big endian systems.
* Version 1.6.2 (released 2011-11-28)
** Check return value of calloc() when creating errno variables.
** Fix build on OpenBSD with it's own libusb. Reported and patched by
Doug Huff <[email protected]>.
** Use correct return type for getopt() - fixes problem on CPUs where
'char' defaults to unsigned. Reported by <[email protected]>.
** Header files are now usable from C++.
Reported by Giampaolo Bellini.
** ykchalresp incorrectly rejected some newer firmwares.
Reported by Giampaolo Bellini.
* Version 1.6.1 (released 2011-08-15)
** Fix test_args_to_config crash on some platform.
The problem was due to mixing PIC and non-PIC object code.
* Version 1.6.0 (released 2011-07-20)
** Accept firmware version 2.3.x too.
** ykpersonalize: New parameter -oath-imf for OATH Initial Moving Factor.
Contributed by Frank Cusack <[email protected]>.
** libykpers: New apis for setting/getting OATH Initial Moving Factor.
The APIs are ykp_set_oath_imf and ykp_get_oath_imf.
* Version 1.5.2 (released 2011-05-10)
** Added an udev file.
Use --with-udevrulesdir=/lib/udev/rules.d or similar. Contributed by
Tollef Fog Heen.
** Improve and distribute ykpers4win.mk.
** Cleanup native Windows backend code.
** Fix coredump for challenges of 128 characters in hex decoding.
** Demand that slot choosing parameters comes first on command line.
* Version 1.5.1 (released 2011-04-11)
** Added native Windows backend.
It is used automatically when building with a Mingw compiler, but you
use --with-backend=windows to request it.
** Distribute ykdef.h needed by challenge-response applications.
** Bugfixes :
*** Fixed a crash in the self test on 64-bit platforms.
*** Fixed a build error in self tests when "-z muldefs" is not supported.
*** -ofixed= was incorrectly excluded from pretty-printing of configuration
for OATH-HOTP.
*** Configuring slot 2 was broken on Windows.
* Version 1.5.0 (released 2011-03-09)
** An additional binary (ykchalresp) to perform challenge-response was added.
** When generating keys from passphrase, generate 160 bit keys for modes
that support it (OATH-HOTP and HMAC challenge response).
** OATH-HOTP usability improvements.
** Serial number of YubiKey (2.2+) is shown with `ykpersonalize -v'.
** Make `configure' detect FreeBSD 8 libusb implementation.
* Version 1.4.1 (released 2011-01-19)
** Restore OATH-HOTP symbols for LIBYKPERS_1.0.
Accidentally moved to LIBYKPERS_1.4 in 1.4.0.
* Version 1.4.0 (released 2011-01-17)
** Add support for new features in YubiKey 2.2.
Most notably challenge-response, but also serial number retrieval.
** Stricter argument parsing, to help user avoid configuration surprises.
** Bugfixes :
*** Ask kernel to detach USB HID driver with libusb 0.1 too.
*** Properly reject keys (-a) with upper case hex, instead of just ignoring
those bits.
*** Really check Yubikey compatibility when setting options.
*** Pretty-printer did not handle bit overloaded cfgflags.
It is better now, but not perfect.
* Version 1.3.5 (released 2010-11-25)
** Fixes to make it work under Windows.
Only tested with libusb-1.0 from trunk. See doc/WindowsBuild.wiki.
* Version 1.3.4 (released 2010-09-10)
** Fix crash on Mac OS X.
Reported by rosmiitto in Issue #6:
<http://code.google.com/p/yubikey-personalization/issues/detail?id=6>.
** Fix bug that prevented salting during AES key generation
** from passwords from working. Reported by Ben.
** Add contrib/ sub-directory and contrib/programming.sh from David Dindorp.
See contrib/README for more information.
* Version 1.3.3 (released 2010-05-20)
** Don't warn about upcoming YubiKey firmware 2.2.x, it is compatible.
* Version 1.3.2 (released 2010-03-12)
** Don't warn on YubiKey with firmware 0.9.9, they work fine.
** Fix old firmware error message, it was missing a newline.
* Version 1.3.1 (released 2010-01-30)
** Fix build failure in some cases
* Version 1.3 (released 2010-01-30)
** libykpers-1: Give warning on unknown firmwares, but don't stop
** OATH-HOTP support
ykpersonalize now supports the OATH-HOTP flags.
** Updated documentation
The documentation has been updated to explain the flags a bit better
and OATH-HOTP documentation has been added.
* Version 1.2 (released 2010-01-22)
** libykpers-1: Whitelist firmware version 2.1 too.
* Version 1.1 (released 2009-10-03)
** hex and modhex bugfixes
Check of hex and modhex strings perfected.
** Segfaults and improper error codes when asking for help
Contributed by Tollef Fog Heen.
* Version 1.0 (released 2009-09-18)
** Stable release!
* Version 0.999 (released 2009-09-17)
** Fix build warnings.
May fix decoding issues on some platforms (depending on whether
returning a 'void' value is treated as true or false).
* Version 0.99 (released 2009-09-12)
** libykpers: Fix build error related to _ykp_errno_location on non-Linux.
Reported by Patrick Neave <[email protected]>.
* Version 0.98 (released 2009-09-08)
** ykpersonalize: Exit with non-0 return code when yubikey is not present.
Reported by Greg Woods <[email protected]>.
** ykpersonalize.1: Keep in sync with tool.
By Tollef Fog Heen <[email protected]>.
* Version 0.97 (released 2009-09-03)
** libykpers-1: Add linker version script.
If linker scripts are not supported, fall back on Libtool
-export-symbols-regex. Suggested by Tollef Fog Heen <[email protected]>.
** ykpersonalize: Make -h work even if there is no yubikey present.
Suggested by Peter Hultqvist <[email protected]>.
** ykpersonalize.1: Link to reference manual for explanation of options.
Suggested by Peter Hultqvist <[email protected]>.
** Now requires libyubikey v1.5 or later.
* Version 0.96 (released 2009-08-27)
** Make all input numbers hex by default.
It's still possible to give modhex numbers by preceding them with
`m:'.
** Make it possible to program the second configuration.
Added the two flags -1 and -2 to ykpersonalize. This is to support
the YubiKey II.
** Have ykpersonalize show the new configuration and prompt.
This makes it possible for the user to prevent incorrect configurations.
** Rename installed library to "libykpers-1" and place
** installed header files in sub-directory ykpers-1/.
From now on we promise to retain API and ABI under this name forever.
The shared library will be installed as /usr/lib/libykpers-1.so and
the header files into /usr/include/ykpers-1/. If there is ever an
incompatible API or ABI change in the future, it will be released as a
a new library libykpers-2 with header files in ykpers-2/.
** Add pkg-config script "ykpers-1".
To learn which flags to build the applications that uses the library,
use "pkg-config --cflags --libs ykpers-1".
* Version 0.95 (released 2009-08-17)
** Enable handling of programming access code.
Includes modification of help (-h) text and manual.
* Version 0.94 (released 2009-08-10)
** Improve error handling for libusb-1.0 backend.
Thanks to Tollef Fog Heen.
** Added man page for ykpersonalize.
Thanks to Tollef Fog Heen.
* Version 0.93 (released 2009-08-07)
** Support for libusb-1.0 through --with-backend=libusb-1.0.
Thanks to Tollef Fog Heen.
** Clarify -a parameter.
Thanks to Alphonse R.M. Hoge.
* Version 0.92 (released 2009-05-25)
** Mac OS X build fixes.
* Version 0.91 (released 2009-05-07)
** Added Mac OS X backend.
Contributed by Christer Kaivo-oja <[email protected]>.
** Added --with-backend parameter to chose backend.
* Version 0.9 (released 2009-05-05)
** Initial release candidate.