File: ChangeLog

package info (click to toggle)
python-u2flib-server 5.0.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: python: 1,561; makefile: 9
file content (733 lines) | stat: -rw-r--r-- 22,186 bytes parent folder | download | duplicates (3)
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
2017-03-30  Dain Nilsson <dain@yubico.com>

	* NEWS, setup.py, u2flib_server/__init__.py: Prepare release.

2017-03-29  Dain Nilsson <dain@yubico.com>

	* test/test_u2f.py: Get rid of deprecation warning in tests.

2017-03-29  Dain Nilsson <dain@yubico.com>

	* test/test_u2f.py: Cleanups and additional tests.

2017-03-29  Dain Nilsson <dain@yubico.com>

	* u2flib_server/model.py: Minor cleanups.  - Use IntEnum for TRANSPORT.  - Throw ValueError on invalid signature instead of exposing the
	  exception from cryptography.

2017-03-29  Dain Nilsson <dain@yubico.com>

	* README: Fix python dependency in README.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* .travis.yml: Fix pypy versions on Travis.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* .travis.yml, NEWS: Add pypy and pypy3 to travis builds.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* : Merge PR #40.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* setup.cfg: Re-add universal=1 to bdist_wheel which was removed
	unintentionally.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* u2flib_server/attestation/resolvers.py: Use setdefault to
	initialize empty list.

2017-03-28  Dain Nilsson <dain@yubico.com>

	* u2flib_server/attestation/data.py: Added missing transports to
	YubiKey Plus.

2017-03-25  Frank Cash <cashc@acm.org>

	* README: Update README

2017-03-22  Dain Nilsson <dain@yubico.com>

	* u2flib_server/model.py: Make Registration and Signature data take
	raw data only.

2017-03-22  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py, u2flib_server/attestation/matchers.py: 
	Fix metadata match by OID with value.

2017-02-28  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py, u2flib_server/model.py: Return
	DeviceRegistration used for successful auth.

2017-02-28  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py, u2flib_server/attestation/__init__.py,
	u2flib_server/attestation/metadata.py,
	u2flib_server/attestation/model.py: Remove duplicate Attestation
	class.

2017-02-28  Dain Nilsson <dain@yubico.com>

	* .gitmodules, MANIFEST.in, release.py, setup.py,
	test/soft_u2f_v2.py, u2flib_server/yubicommon, vendor/yubicommon: 
	Remove yubicommon.

2017-02-27  Dain Nilsson <dain@yubico.com>

	* test/test_model.py, u2flib_server/model.py: Require at least one
	RegisteredKey for new U2fSignRequest.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* README, examples/u2f_server.py: Update example.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py, examples/yubiauth_server.py: Drop
	yubiauth_server.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py, test/test_model.py,
	test/test_serialization.py, test/test_u2f.py: Fix tests.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* .travis.yml: Update travis.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py, test/test_jsapi.py,
	test/test_matchers.py, test/test_model.py,
	u2flib_server/attestation/model.py: Fix tests.

2017-02-21  Dain Nilsson <dain@yubico.com>

	* .pre-commit-config.yaml, setup.cfg, test/soft_u2f_v2.py,
	test/test_model.py: flake8

2017-02-21  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py, test/soft_u2f_v2.py,
	test/test_attestation.py, test/test_jsapi.py, test/test_model.py,
	test/test_serialization.py, test/test_u2f.py,
	test/test_u2f_highlevel.py, test/test_u2f_v2.py,
	test/test_utils.py, u2flib_server/attestation/matchers.py,
	u2flib_server/attestation/metadata.py, u2flib_server/{jsapi.py =>
	attestation/model.py}, u2flib_server/attestation/resolvers.py,
	u2flib_server/{data.py => model.py}, u2flib_server/u2f.py,
	u2flib_server/utils.py: More fixes.

2017-02-17  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py: Updated example.

2017-02-17  Dain Nilsson <dain@yubico.com>

	* setup.py, test/soft_u2f_v2.py, test/test_u2f_highlevel.py,
	u2flib_server/__init__.py, u2flib_server/data.py,
	u2flib_server/jsapi.py, u2flib_server/u2f_v2.py,
	u2flib_server/utils.py: Re-implemented objects in data.py (to be
	moved)

2017-01-23  Dain Nilsson <dain@yubico.com>

	* : Merge pull request #32.

2016-04-05  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Bumped version post release.

2016-04-05  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Prepare release.

2016-03-30  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS.

2016-03-30  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py: Fixed example server which was still
	expecting M2Crypto.

2016-03-30  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Fix certification parsing on py3 (fixes
	#29).

2016-03-30  Dain Nilsson <dain@yubico.com>

	* test/test_u2f_v2.py: Added failing test (#29).

2016-03-01  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Bumped version post release.

2016-03-01  Dain Nilsson <dain@yubico.com>

	* u2flib_server/__init__.py: Set version for release.

2016-03-01  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS for release.

2016-03-01  Dain Nilsson <dain@yubico.com>

	* BLURB: Corrected URL in BLURB.

2016-03-01  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS with latest changes.  Updated entry about added/removed dependencies.  Added note about transports.  Removed note in NEWS about double-hashing as this bug was introduced
	during the port to cryptography, and is not in any released version.

2016-02-26  Alex Willmer <alex@moreati.org.uk>

	* setup.py, u2flib_server/attestation/matchers.py: Removed pyasn1
	dependencies Note that get_ext_by_oid() still returns the raw bytes of the
	extension.  I'm still undecided on whether keeping this behaviour is
	the right thing to do or not.  References Yubico/python-u2flib-server#19

2016-02-26  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py: Added tests for reading transport data.

2016-02-26  Dain Nilsson <dain@yubico.com>

	* setup.py, u2flib_server/attestation/data.py,
	u2flib_server/attestation/metadata.py, u2flib_server/jsapi.py: Added
	support for transport data in attestation certificates and metadata.

2016-02-26  Dain Nilsson <dain@yubico.com>

	* .travis.yml: Disable PyPy in TravisCI (closes #24).  We should re-enable this once TravisCI supports PyPy 2.6

2016-02-26  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #20 from moreati/python3.x Add Python 3.x support

2016-02-26  Alex Willmer <alex@moreati.org.uk>

	* setup.cfg: Declared universal wheel support Since we are pure python, and the code is written in a subset of
	Python supported by both 2.x and 3.x we can do this.

2016-02-26  Alex Willmer <alex@moreati.org.uk>

	* : Merge #!/usr/bin/env & double-hash fixes from 'master'

2016-02-25  Alex Willmer <alex@moreati.org.uk>

	* test/test_u2f_v2.py, u2flib_server/u2f_v2.py: Fixed uses of
	.encode() on bytes variables These raised AttributeError on Python 3.  I've also changed the remaining exceptions to use the repr() of the
	supplied arguments, for consistency.

2016-02-25  Alex Willmer <alex@moreati.org.uk>

	* u2flib_server/attestation/resolvers.py, u2flib_server/jsapi.py,
	u2flib_server/utils.py: Used text_type to check for need .encode() See inline comments

	https://github.com/Yubico/python-u2flib-server/commit/49930e539deeede13fcc512feaf88bc414080a46

2016-02-25  Alex Willmer <alex@moreati.org.uk>

	* vendor/yubicommon: Updated yubicommon for compat.text_type

2016-02-22  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v2.py, test/test_attestation.py,
	test/test_jsapi.py, test/test_matchers.py,
	u2flib_server/attestation/resolvers.py, u2flib_server/jsapi.py,
	u2flib_server/u2f_v2.py, u2flib_server/utils.py: Made string types
	compatible with Python 3.

2016-02-15  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v2.py, u2flib_server/u2f_v2.py: Fix double-hashing
	of message to be signed for authentication.

2016-02-15  Dain Nilsson <dain@yubico.com>

	* test/test_u2f_v2.py: Add test for double-hash for authentication.

2016-02-14  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v2.py, test/test_u2f_v2.py, u2flib_server/u2f_v2.py: 
	Fix double-hashing in attestation signatures.

2016-02-12  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #21 from medina/python-path env-derived paths

2016-02-04  medina <daniel.medina@gmail.com>

	* examples/u2f_server.py: Update u2f_server.py

2016-01-25  Dain Nilsson <dain@yubico.com>

	* vendor/yubicommon: Updated yubicommon.

2016-01-25  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #18 from moreati/cryptography1.2 Rebase of m2crypto -> cryptography migration

2016-01-25  Alex Willmer <alex@moreati.org.uk>

	* examples/u2f_server.py, u2flib_server/attestation/matchers.py,
	u2flib_server/attestation/resolvers.py, u2flib_server/jsapi.py: 
	Changes uses of map() to list comprehensions In Python 3.x map() returns an iterator, and in addtion
	comprehensions are generally considered more pythonic.

2016-01-25  Alex Willmer <alex@moreati.org.uk>

	* .travis.yml, tox.ini: Test Python 3.3-3.5 & PyPy under Tox &
	Travis The testsuite currently fails under Python 3.x. This is expected,
	for now.

2016-01-14  Alex Willmer <alex@moreati.org.uk>

	* README: Updated installation instructions for m2crypto ->
	cryptography transition

2016-01-14  Alex Willmer <alex@moreati.org.uk>

	* NEWS: Added upcoming changes to NEWS

2016-01-14  Alex Willmer <alex@moreati.org.uk>

	* u2flib_server/attestation/resolvers.py: Added docstring to
	MetadataResolver._verify_cert()

2016-01-14  Alex Willmer <alex@moreati.org.uk>

	* test/test_matchers.py: Added unit tests for get_ext_by_oid() Originally this file was introduced in https://github.com/moreati/python-u2flib-server/commit/ef597bf0c2e2

2016-01-14  Alex Willmer <alex@moreati.org.uk>

	* .travis.yml: Add CI build-dep for Cryptography

2016-01-12  Dain Nilsson <dain@yubico.com>

	* u2flib_server/attestation/data.py: Updated Yubico metadata.

2016-01-12  Dain Nilsson <dain@yubico.com>

	* vendor/yubicommon: Updated yubicommon.

2016-01-12  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #17 from mark-adams/with-cryptography Ported all crypto-related code to use cryptography instead of
	M2Crypto

2016-01-11  Mark Adams <madams@atlassian.com>

	* u2flib_server/__init__.py: Increment version to 4.0.0

2016-01-11  Mark Adams <madams@atlassian.com>

	* u2flib_server/attestation/resolvers.py: Changed
	MetadataResolver._verify_cert to return a bool instead of int

2016-01-11  Mark Adams <madams@atlassian.com>

	* test/soft_u2f_v2.py, u2flib_server/u2f_v2.py,
	u2flib_server/utils.py: Stop raising a generic exception when
	signature verification fails Both methods no longer raise a generic exception (InvalidSignature
	is allowed to bubble instead since this provides better feedback to
	the caller

2016-01-09  Mark Adams <mark@markadams.me>

	* u2flib_server/__init__.py: Increment version since the change from
	M2Crypto to cryptography is fairly significant

2016-01-05  Mark Adams <mark@markadams.me>

	* setup.py, test/soft_u2f_v2.py, test/test_attestation.py,
	test/test_u2f_highlevel.py, u2flib_server/attestation/matchers.py,
	u2flib_server/attestation/resolvers.py, u2flib_server/u2f_v2.py,
	u2flib_server/utils.py: Ported all crypto-related code to use
	cryptography instead of M2Crypto

2015-09-30  Dain Nilsson <dain@yubico.com>

	* vendor/yubicommon: Updated yubicommon.

2015-08-03  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #11 from moreati/extras_require Declare dependencies of the scripts in examples/

2015-07-31  Henrik Strth <minisu@users.noreply.github.com>

	* : Merge pull request #12 from moreati/test_jsapi Unit tests for u2flib_server.jsapi, 100% coverage

2015-07-29  Alex Willmer <alex@moreati.org.uk>

	* setup.py: Declare dependencies of the scripts in examples/ This allows e.g. `pip install python-u2flib-server[u2f_server]`.  The line containing `python_version=="2.6"` is an environment
	marker, supported since setuptools 0.7 (released June 2013).
	`argparse` is in the stdlib from Python 2.7.

2015-07-29  Alex Willmer <alex@moreati.org.uk>

	* .travis.yml: Speed up Travis builds - Move to container-based infrastructure - Use latest pip to benefit from wheel based installs - Save pip downloads and wheels cache between builds

2015-07-29  Alex Willmer <alex@moreati.org.uk>

	* .coveragerc, .gitignore, .travis.yml, dev-requirements.txt,
	tox.ini: Add Tox support and reporting of test coverage

2015-06-30  Dain Nilsson <dain@yubico.com>

	* README: Fixed instructions in README.

2015-06-30  Dain Nilsson <dain@yubico.com>

	* setup.py, u2flib_server/__init__.py, vendor/yubicommon: Updated
	yubicommon.

2015-06-16  Dain Nilsson <dain@yubico.com>

	* README: Updated README.

2015-06-16  Dain Nilsson <dain@yubico.com>

	* .gitmodules, MANIFEST.in, release.py, setup.py, test/__init__.py,
	test/test_attestation.py, test/test_serialization.py,
	test/test_u2f_highlevel.py, test/test_u2f_v2.py,
	u2flib_server/yubicommon, vendor/yubicommon: Use yubicommon.

2015-06-16  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Updated version and NEWS for
	release.

2015-06-15  Dain Nilsson <dain@yubico.com>

	* BLURB, COPYING, examples/u2f_server.py,
	examples/yubiauth_server.py, release.py, setup.py,
	test/soft_u2f_v2.py, test/test_attestation.py,
	test/test_serialization.py, test/test_u2f_highlevel.py,
	test/test_u2f_v2.py, u2flib_server/__init__.py,
	u2flib_server/attestation/__init__.py,
	u2flib_server/attestation/matchers.py,
	u2flib_server/attestation/metadata.py,
	u2flib_server/attestation/resolvers.py, u2flib_server/jsapi.py,
	u2flib_server/u2f.py, u2flib_server/u2f_v2.py,
	u2flib_server/utils.py: Changed license to BSD 2-clause.

2015-06-02  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py,
	u2flib_server/attestation/resolvers.py: Fix metadata again.

2015-06-02  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS for release.

2015-04-13  Dain Nilsson <dain@yubico.com>

	* u2flib_server/attestation/data.py: Updated Yubico metadata.

2015-03-12  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/attestation/resolvers.py: Fix reading metadata
	from directory.

2015-03-12  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #8 from Yubico/issue-6-fix Now deletes challenges after use.

2015-02-18  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Remove cert that wasn't broken.

2015-02-18  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Added missing broken cert.

2015-02-02  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Bumped version.

2015-02-02  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS for release.

2015-02-02  Dain Nilsson <dain@yubico.com>

	* setup.py: Add version requirement to pyasn1 dependency.

2015-02-02  Dain Nilsson <dain@yubico.com>

	* test/test_attestation.py, u2flib_server/attestation/resolvers.py: 
	Only allow the latest version of each metadata object.

2015-01-29  Dain Nilsson <dain@yubico.com>

	* NEWS, setup.py, test/test_attestation.py,
	u2flib_server/attestation/__init__.py,
	u2flib_server/attestation/data.py,
	u2flib_server/attestation/matchers.py,
	u2flib_server/attestation/metadata.py,
	u2flib_server/attestation/resolvers.py, u2flib_server/jsapi.py: 
	Added attestation/metadata.

2015-01-21  Dain Nilsson <dain@yubico.com>

	* README, examples/u2f_server.py, u2flib_server/jsapi.py,
	u2flib_server/u2f.py, u2flib_server/u2f_v2.py: Updated u2f_server.py
	to use highlevel API.

2015-01-21  Dain Nilsson <dain@yubico.com>

	* setup.py: Change development status to stable.

2015-01-19  Dain Nilsson <dain@yubico.com>

	* : commit 263e793ced7a05faaf144dc39cee3cce404c01c7 Author: Dain
	Nilsson <dain@yubico.com> Date:   Mon Jan 19 12:34:39 2015 +0100

2015-01-19  Dain Nilsson <dain@yubico.com>

	* NEWS, test/test_u2f_highlevel.py: Add test for registering
	multiple devices.

2015-01-19  Dain Nilsson <dain@yubico.com>

	* test/{test_u2f_multiple.py => test_u2f_highlevel.py}: Rename test.

2015-01-19  Dain Nilsson <dain@yubico.com>

	* test/test_u2f_multiple.py, u2flib_server/{u2f_multiple.py =>
	u2f.py}: Rename u2f_multiple to u2f.

2015-01-19  Dain Nilsson <dain@yubico.com>

	* u2flib_server/__init__.py, u2flib_server/jsapi.py,
	u2flib_server/jsobjects.py, u2flib_server/u2f_multiple.py: Cleanups
	and copy-paste fix.

2015-01-14  Low Kian Seong <kianseong@gmail.com>

	* setup.py: Update setup.py Adding `description` to `setup.py`

2015-01-14  Dain Nilsson <dain@yubico.com>

	* NEWS: Update NEWS for release.

2015-01-14  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/u2f_v2.py: Fix certificates with unused bits
	in signature.

2014-12-09  Henrik Strth <minisu@users.noreply.github.com>

	* README: Update README

2015-01-14  Dain Nilsson <dainzor@gmail.com>

	* : Merge pull request #7 from lowks/patch-1 Update setup.py

2015-01-14  Dain Nilsson <dain@yubico.com>

	* NEWS: Update NEWS for release.

2015-01-14  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/u2f_v2.py: Fix certificates with unused bits
	in signature.

2014-12-10  Henrik Strth <henrik@yubico.com>

	* test/test_u2f_multiple.py, u2flib_server/u2f_multiple.py: Changed
	the new tests to nosetests

2014-12-10  Henrik Strth <henrik@yubico.com>

	* test/test_u2f_multiple.py, u2flib_server/jsobjects.py,
	u2flib_server/u2f_multiple.py: Added
	RegisterRequestData.getRegisterRequest(response) and corresponding
	AuthenticateRequestData method

2014-12-10  Henrik Strth <henrik@yubico.com>

	* test/soft_u2f_v2.py, test/test_u2f_multiple.py,
	u2flib_server/jsobjects.py, u2flib_server/u2f_multiple.py: First
	fully working draft

2014-12-09  Henrik Strth <henrik@yubico.com>

	* test/soft_u2f_v2.py, test/test_u2f_multiple.py,
	u2flib_server/u2f_multiple.py, u2flib_server/u2f_v2.py: First
	passing unit test for multi-device registration

2014-12-09  Henrik Strth <minisu@users.noreply.github.com>

	* README: Update README

2014-12-09  Henrik Strth <henrik.strath@gmail.com>

	* test/test_u2f_multiple.py, u2flib_server/jsobjects.py,
	u2flib_server/u2f_multiple.py: Initial stab at multi key support

2014-12-09  Henrik Strth <henrik.strath@gmail.com>

	* .gitignore: Added Pycharm to .gitignore

2014-12-01  Henrik Strth <minisu@users.noreply.github.com>

	* NEWS: Update NEWS

2014-12-01  Henrik Strth <minisu@users.noreply.github.com>

	* NEWS: Update NEWS

2014-10-22  Henrik Strth <henrik@yubico.com>

	* README, README.adoc: Symlinked README and linked to
	developers.yubico.com/U2F

2014-10-10  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Update NEWS and bump version.

2014-10-10  Dain Nilsson <dain@yubico.com>

	* u2flib_server/jsapi.py: Fix error handling for
	JSONDict.__getattr__

2014-10-09  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS for release.

2014-10-09  Dain Nilsson <dain@yubico.com>

	* NEWS, examples/u2f_server.py, examples/yubiauth_server.py,
	test/soft_u2f_v2.py, test/test_serialization.py,
	test/test_u2f_v2.py, u2flib_server/__init__.py,
	u2flib_server/jsapi.py, u2flib_server/u2f_v2.py: 3.0.0 API rewrite

2014-10-09  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Use EVP API instead of assuming EC for
	attestation cert verification.

2014-10-07  Klas Lindfors <klas@yubico.com>

	* .travis.yml: install swig instead

2014-10-07  Klas Lindfors <klas@yubico.com>

	* .travis.yml: add travis

2014-09-26  Dain Nilsson <dain@yubico.com>

	* release.py: Fix keyid passing in release.py

2014-09-26  Dain Nilsson <dain@yubico.com>

	* NEWS: Updated NEWS for release.

2014-09-26  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Bumped version and updated NEWS.

2014-09-25  Dain Nilsson <dain@yubico.com>

	* u2flib_server/__init__.py: Bumped version.

2014-09-19  Dain Nilsson <dain@yubico.com>

	* NEWS, README: Updated NEWS and README

2014-09-19  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py, examples/yubiauth_server.py: Use
	simplified AppID to allow non-https in example server.

2014-09-18  Dain Nilsson <dain@yubico.com>

	* setup.py: Fix license in setup.py

2014-09-16  Dain Nilsson <dain@yubico.com>

	* u2flib_server/jsapi.py, u2flib_server/u2f_v2.py: Allow JSONDict to
	take kwargs.

2014-09-16  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Fix description of SignResponse in
	comment.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v2.py, u2flib_server/u2f_v2.py,
	u2flib_server/utils.py: Use OpenSSL for random.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Support providing a challenge explicitly.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Expose JSAPI objects from u2f_v2.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Allow passing
	RegisterResponse/SignResponse.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v0.py, test/test_serialization.py,
	test/test_u2f_v0.py, u2flib_server/u2f_v0.py,
	u2flib_server/utils.py: Removed v0 and related code.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* u2flib_server/jsapi.py, u2flib_server/u2f_v2.py: Introduce jsapi
	to deal with the JavaScript objects.

2014-09-15  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v2.py: Provice access to raw data for types.

2014-09-11  Henrik Strth <minisu@users.noreply.github.com>

	* README: Updated README, added a Dependencies section.

2014-09-10  Dain Nilsson <dain@yubico.com>

	* u2flib_server/u2f_v0.py, u2flib_server/u2f_v2.py: Replace
	staticmethod with classmethod where applicable.

2014-09-08  Dain Nilsson <dain@yubico.com>

	* examples/u2f_server.py: Added a note about requiring webob for the
	example server (fixes #3).

2014-09-01  Dain Nilsson <dain@yubico.com>

	* test/soft_u2f_v2.py, u2flib_server/u2f_v2.py: Updated for latest
	U2F_V2 spec.

2014-02-18  Dain Nilsson <dain@yubico.com>

	* NEWS, u2flib_server/__init__.py: Updated version and NEWS for
	release.

2014-02-13  Dain Nilsson <dain@yubico.com>

	* {u2flib_server => test}/soft_u2f_v0.py, {u2flib_server =>
	test}/soft_u2f_v2.py, test/test_u2f_v0.py, test/test_u2f_v2.py: 
	Moved SoftU2FDevice to test/

2014-02-13  Dain Nilsson <dain@yubico.com>

	* Initial import