-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
2666 lines (1500 loc) · 75.1 KB
/
ChangeLog
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
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016-06-15 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.23
2016-06-13 Klas Lindfors <[email protected]>
* tests/util_test.c: add tests for empty otp part to
check_user_token()
2016-06-13 Klas Lindfors <[email protected]>
* tests/aux/build-and-test.sh: install docbook-xsl instead of
docbook-xml for travis seems to help with a2x hangs
2016-06-03 Klas Lindfors <[email protected]>
* ykpamcfg.c: use umask instead of chmod to set file permissions
2016-05-23 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions
2016-05-23 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.22
2016-04-18 Klas Lindfors <[email protected]>
* configure.ac: let configure script check for ykclient_set_proxy() since it's the last symbol added to ykclient that we need, from
2.15.
2016-04-01 Klas Lindfors <[email protected]>
* : commit 0a1051f6dfd8c13d47614eaf9f38f4ee70bb109a Author: Klas
Lindfors <[email protected]> Date: Thu Mar 31 10:12:18 2016 +0200
2016-03-31 Klas Lindfors <[email protected]>
* ykpamcfg.c: set file permissions when creating a new challenge
file
2016-03-31 Klas Lindfors <[email protected]>
* configure.ac, pam_yubico.c: switch
pam_modutils_getpwnam()/getpwnam() to always use getpwnam_r()
2016-03-30 Klas Lindfors <[email protected]>
* pam_yubico.c: copy ownership and modes of old challenge file when
creating a new one fixes #92
2016-03-29 Klas Lindfors <[email protected]>
* README, pam_yubico.8.txt: verbose_otp can not be used with OpenSSH fixes #25
2016-02-26 Klas Lindfors <[email protected]>
* doc/Authentication_Using_Challenge-Response.adoc: typo.
2016-02-26 Klas Lindfors <[email protected]>
* doc/Authentication_Using_Challenge-Response.adoc: document how to
use ykpamcfg with path instead of moving file
2016-02-26 Klas Lindfors <[email protected]>
* : Merge pull request #89 from AmShaegar13/improve_cr_auth_docu Changed /etc/yubico to /var/yubico
2016-02-19 Klas Lindfors <[email protected]>
* .gitignore: ignore pkg files
2016-02-19 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions after release
2016-02-19 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.21
2016-02-17 Klas Lindfors <[email protected]>
* mac.mk: add first stab at makefile for mac installer fixes #76
2016-02-17 Klas Lindfors <[email protected]>
* pam_yubico.c, util.c: pass cfg->debug to check_firmware_version()
and let it use D macro
2016-02-16 Klas Lindfors <[email protected]>
* : Merge pull request #88 from
shankerwangmiao/bug-fix-for-null-conv add check for NULL conv
2015-11-16 Klas Lindfors <[email protected]>
* : commit e231b8217cdfc25bffc7181a1270dfd840a3aebf Author: mikemn
<[email protected]> Date: Thu Nov 12 15:02:49 2015
-0600
2015-11-11 mikemn <[email protected]>
* pam_yubico.8.txt, pam_yubico.c: Add proxy support via Curl
2015-11-13 Klas Lindfors <[email protected]>
* tests/aux/build-and-test.sh: set -e later for travis and hope for
the best
2015-11-13 Klas Lindfors <[email protected]>
* tests/aux/build-and-test.sh: add brew update for travis
2015-10-08 Klas Lindfors <[email protected]>
* configure.ac, m4/valgrind-tests.m4: with more thought: remove
valgrind for tests since curl+gnutls seems to leave gnutls inited data around
2015-10-08 Klas Lindfors <[email protected]>
* configure.ac, m4/valgrind-tests.m4: add valgrind-tests
2015-10-08 Klas Lindfors <[email protected]>
* pam_yubico.c: use correct modifier for size_t print
2015-10-08 Klas Lindfors <[email protected]>
* .travis.yml, tests/aux/build-and-test.sh, tests/pam_test.c: setup
travis to do multi-os builds
2015-10-08 Klas Lindfors <[email protected]>
* tests/Makefile.am, tests/test.c: drop the non-portable test test it linked with the module and didn't really do anything, making the
test suite more fragile than necessary
2015-10-05 Klas Lindfors <[email protected]>
* README, doc/YubiKey_and_FreeRADIUS_1FA_via_PAM.adoc,
doc/YubiKey_and_FreeRADIUS_via_PAM.adoc: remove forgotten references
to wiki There is no wiki for this project, that information is either in the
doc folder or in the project manpages. Both of which accessible from
https://developers.yubico.com/yubico-pam/ fixes #81
2015-09-22 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions
2015-09-22 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.20
2015-09-15 Klas Lindfors <[email protected]>
* pam_yubico.8.txt: add information about files used thanks to @madrat- for original suggestions fixes #78
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: reset yk_errno when we're happy with the result
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: correct fchmod() return check
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: switch i to size_t to match usage
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: fix initialization of msg to not warn apparently this is gcc bug 53119
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: make yubi_attr_prefix_len a size_t
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: mark unused parameter with __attribute__((unused))
2015-09-14 Klas Lindfors <[email protected]>
* pam_yubico.c: use mkstemp() to get the tempfile instead unfortunately means we have to fchmod() it afterwards to be sure
2015-09-14 Klas Lindfors <[email protected]>
* : Merge pull request #79 from madrat-/master do_challenge_response change privileges twice at reading and writing
2015-09-11 Klas Lindfors <[email protected]>
* pam_yubico.c: in the challenge-response case only drop privileges
for user dir This allows the module to work in a case where the directory is only
writable to root. fixes #77
2015-09-11 Klas Lindfors <[email protected]>
* configure.ac: don't warn about to long strings
2015-09-09 Klas Lindfors <[email protected]>
* pam_yubico.c, util.c, util.h, ykpamcfg.c: include pwd.h in util.h
2015-09-08 Klas Lindfors <[email protected]>
* Makefile.am: disable xmllint for a2x since it seems to cause
problems
2015-09-08 Klas Lindfors <[email protected]>
* configure.ac, pam_yubico.c, tests/util_test.c, util.c, util.h,
ykpamcfg.c: use pam_modutil_getpwnam() if it's available also refactor to pass in a passwd struct to the util functions
2015-08-18 Klas Lindfors <[email protected]>
* tests/util_test.c: add a test for a user showing up twice in the
file
2015-08-11 Klas Lindfors <[email protected]>
* pam_yubico.8.txt: add documentation for chalresp_path parameter
2015-08-11 Klas Lindfors <[email protected]>
* : Merge pull request #71 from afeinberg/comments Support comments in authfile
2015-07-08 Klas Lindfors <[email protected]>
* pam_yubico.c: free message at end of function it was possible message was never freed if the sprintf() call failed
2015-06-15 Klas Lindfors <[email protected]>
* pam_yubico.c: add cainfo option to allow usage of a cabundle
instead of path path submitted by github user @Mrten reportedly this is needed if
curl is linked with gnutls fixes #6
2015-04-27 Klas Lindfors <[email protected]>
* pam_yubico.c: add debug print for last url used
2015-04-07 Klas Lindfors <[email protected]>
* tests/Makefile.am: export LDAPNOINIT=1 for tests so we don't run
with systems ldap config fixes #61
2015-04-07 Klas Lindfors <[email protected]>
* tests/aux/ldap.pl, tests/aux/ykval.pl: more debugging on mocks
2015-04-07 Klas Lindfors <[email protected]>
* tests/aux/ldap.pl, tests/aux/ykval.pl: add some debug logging to
ldap and ykval mocks
2015-03-30 Klas Lindfors <[email protected]>
* util.c: change int to size_t
2015-03-30 Klas Lindfors <[email protected]>
* util.c: fixup warnings with sign
2015-03-30 Klas Lindfors <[email protected]>
* util.c: fixup warnings related to constness of filename
2015-03-30 Klas Lindfors <[email protected]>
* : Merge pull request #60 from neverpanic/master Fix warnings on OS X with clang
2015-03-28 Clemens Lang <[email protected]>
* pam_yubico.c: Fix warning if pam_message.msg isn't constant On OS X and FreeBSD, struct pam_message does not declare its msg
member as constant. This causes a warning when assigning a constant
string to it: pam_yubico.c:403:14: warning: assigning to 'char *' from 'const char
*' discards qualifiers
[-Wincompatible-pointer-types-discards-qualifiers] msg[0].msg =
message; ^ ~~~~~~~
2015-03-23 Klas Lindfors <[email protected]>
* Makefile.am: drop save-mans
2015-03-23 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions
2015-03-23 Klas Lindfors <[email protected]>
* NEWS: release 2.19
2015-03-17 Klas Lindfors <[email protected]>
* README: fix typo
2015-03-13 Klas Lindfors <[email protected]>
* README: fix the git url again fixes #54
2015-03-10 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Fixed broken link
2015-03-10 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: removed broken link
2015-03-10 Klas Lindfors <[email protected]>
* : Merge pull request #56 from shanx/master Clarified the notion of id when using the pam_yubico module
2015-03-06 Remco Wendt <[email protected]>
* README: fixed typo
2015-03-06 Remco Wendt <[email protected]>
* README: Clarified the notion of id when using the pam_yubico
module
2015-03-04 Klas Lindfors <[email protected]>
* NEWS: fix formatting of NEWS
2015-03-04 Klas Lindfors <[email protected]>
* NEWS: prepare news for 2.19
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: change datatypes to unsigned avoiding warnings about sign conversion
2015-03-04 Klas Lindfors <[email protected]>
* : commit 77067004e830724442004c458c0d8f59e18f7272 Author: Klas
Lindfors <[email protected]> Date: Wed Mar 4 13:52:31 2015 +0100
2015-03-04 Klas Lindfors <[email protected]>
* README: use ldap_bind_user and ldap_bind_password in example
2015-03-04 Klas Lindfors <[email protected]>
* tests/aux/ldap.pl, tests/pam_test.c: simple ldap filter test
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: allow ldap search with no base
2015-03-04 Klas Lindfors <[email protected]>
* tests/util_test.c, util.c: make sure filter is null terminated and
return length including null
2015-03-04 Klas Lindfors <[email protected]>
* tests/pam_test.c: drop authfile for ldap_cfg
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: move debug print (and dereference of resp) inside
null check
2015-03-04 Klas Lindfors <[email protected]>
* Makefile.am: add DEFS to cppcheck
2015-03-04 Klas Lindfors <[email protected]>
* .travis.yml: try to survive and continue for failure in apt-get
update
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: move protocol inside HAVE_LIBLDAP to avoid warning of unused variable
2015-03-04 Klas Lindfors <[email protected]>
* util.c: no need for a temp pointer when writing output of
filter_result_len()
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: drop password parameter for
authorized_user_token_ldap()
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: drop the ldap_bind_no_anonymous feature Sending the users password out in another direction is scary and
requires more thought. Ideally this should be solved by using ldap
GSSAPI or similar instead of sending a cleartext password over the
network.
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: consider all success as valid session
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: don't throw const away in cast
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: client_id is supposed to be unsigned
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: make sure rc is initialized before using
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: don't use c++ style comments
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: don't use c++ style comments
2015-03-04 Klas Lindfors <[email protected]>
* pam_yubico.c: conform to other code
2015-02-20 Klas Lindfors <[email protected]>
* README: reference github with https, not git@ fixes #54
2015-02-16 Klas Lindfors <[email protected]>
* util.c, util.h: simplify filter_result_len() and fixup warnings
2015-02-16 Klas Lindfors <[email protected]>
* pam_yubico.c: drop extra options for bind dn and password
2015-02-16 Klas Lindfors <[email protected]>
* : Merge commit 'aa87979eb84adb3adef170dac6ff2285ba43cd26' into
features/ldap Conflicts: README
2015-02-16 Klas Lindfors <[email protected]>
* .gitignore: ignore
2015-02-13 Klas Lindfors <[email protected]>
* pam_yubico.c: add debug print with version
2015-02-12 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions after release
2015-02-12 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.18
2015-02-12 Klas Lindfors <[email protected]>
* tests/Makefile.am, tests/pam_test.c: make sure out-of-tree builds
work
2015-02-12 Klas Lindfors <[email protected]>
* ykpamcfg.1.txt, ykpamcfg.c: add -V for version to ykpamcfg and
exit earlier also error on any part of iterations being non-numeric
2015-01-29 Klas Lindfors <[email protected]>
* util.c: fix format specifiers
2015-01-29 Klas Lindfors <[email protected]>
* Makefile.am, configure.ac: add --enable-cppcheck
2015-01-21 Klas Lindfors <[email protected]>
* configure.ac: fixup check for pam_modutil_drop_priv() this was broken in 68d3f5879ec6782742d68d7e74066da739a0b444 fixes
#50
2015-01-21 Klas Lindfors <[email protected]>
* pam_yubico.c: free more unfreed memory in the pam_response
structure
2015-01-21 Klas Lindfors <[email protected]>
* tests/pam_test.c: strdup() the OTP returned
2015-01-20 Klas Lindfors <[email protected]>
* tests/aux/build-and-test.sh: update build-and-test
2015-01-20 Klas Lindfors <[email protected]>
* .travis.yml, tests/aux/build-and-test.sh: enable coverage build
for travis
2015-01-20 Klas Lindfors <[email protected]>
* .gitignore, Makefile.am, configure.ac, tests/Makefile.am: add a
--enable-coverage switch
2015-01-20 Klas Lindfors <[email protected]>
* tests/pam_test.c: only run the ldap "server" if we're compiling
with ldap
2015-01-20 Klas Lindfors <[email protected]>
* README: add notice about tests requiring perl and
Net::LDAP::Server
2015-01-20 Klas Lindfors <[email protected]>
* tests/aux/authfile, tests/pam_test.c: add a test for authfile user
with two ok public ids
2015-01-20 Klas Lindfors <[email protected]>
* tests/aux/ldap.pl, tests/aux/ykval.pl, tests/pam_test.c: add a
second successful ldap test with two valid yubiKeyId
2015-01-20 Klas Lindfors <[email protected]>
* tests/pam_test.c: use higher ports and put them in constants
2015-01-19 Klas Lindfors <[email protected]>
* .travis.yml: add more travis config
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: fixup some warnings in test
2015-01-19 Klas Lindfors <[email protected]>
* Makefile.am: add EXTRA_DIST for tests/aux
2015-01-19 Klas Lindfors <[email protected]>
* tests/aux/ldap.pl, tests/pam_test.c: add a mocked ldap server and
ldap tests relates #44
2015-01-19 Klas Lindfors <[email protected]>
* tests/aux/ykval.pl, tests/pam_test.c: add a test for wrong otp and
small fixup to mock server
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: drop id from data struct and use index in array
2015-01-19 Klas Lindfors <[email protected]>
* tests/aux/ykval.pl, tests/pam_test.c: pass port correctly
2015-01-19 Klas Lindfors <[email protected]>
* tests/aux/ykval.pl, tests/pam_test.c: add test for wrong otp for
user
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: add test for failure-case
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: add a second child and mock server
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: fix some warnings
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: restructure the test some
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: make the recent pam_test more modularised and
generic
2015-01-19 Klas Lindfors <[email protected]>
* tests/pam_test.c: calculate size of cfg array
2015-01-16 Klas Lindfors <[email protected]>
* tests/aux/ykval.pl, tests/aux/ykval.sh, tests/pam_test.c: test a
bit more and switch the mock to perl
2015-01-16 Klas Lindfors <[email protected]>
* tests/aux/authfile, tests/aux/ykval.sh, tests/pam_test.c: test an
OK authentication add a simple http server in bash that validates the OTP
2015-01-16 Klas Lindfors <[email protected]>
* .gitignore: ignore more
2015-01-16 Klas Lindfors <[email protected]>
* tests/Makefile.am, tests/pam_test.c: add first step of tests
calling the actual module
2015-01-16 Klas Lindfors <[email protected]>
* Makefile.am, configure.ac: prepare by building a temporary library
for the module also fix the linking of libpam so we only do that when we want/need
it
2015-01-16 Klas Lindfors <[email protected]>
* pam_yubico.c: fixup a memory leak the caller is responsible for freeing the pam_response from
conversations
2014-12-17 Klas Lindfors <[email protected]>
* Makefile.am: fixup doc inclusion
2014-12-10 Simon Josefsson <[email protected]>
* Makefile.am: Fix.
2014-12-01 Henrik Stråth <[email protected]>
* README: Update README
2014-11-27 Klas Lindfors <[email protected]>
* util.c: change strtok usage to strtok_r
2014-11-20 Meno Abels <[email protected]>
* README, pam_yubico.c: integrate
https://github.com/Yubico/yubico-pam/pull/39/files
2014-10-29 Meno Abels <[email protected]>
* README, pam_yubico.c, util.c, util.h: enable that openvpn can now
run without any local user
2014-10-28 Meno Abels <[email protected]>
* pam_yubico.c, tests/util_test.c, util.c, util.h: added a better
ldap handling, and to allow query active directory
2014-10-31 Henrik Stråth <[email protected]>
* README: Update README
2014-10-31 Henrik Stråth <[email protected]>
* doc/Authentication_Using_Challenge-Response.adoc: Update
Authentication_Using_Challenge-Response.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/Two_Factor_PAM_Configuration.adoc: Update
Two_Factor_PAM_Configuration.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/Two_Factor_PAM_Configuration.adoc: Update
Two_Factor_PAM_Configuration.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/Two_Factor_PAM_Configuration.adoc: Update
Two_Factor_PAM_Configuration.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/{Yubikey_and_SELinux_on_Fedora_18_and_up.txt =>
Yubikey_and_SELinux_on_Fedora_18_and_up.adoc}: Update and rename
Yubikey_and_SELinux_on_Fedora_18_and_up.txt to
Yubikey_and_SELinux_on_Fedora_18_and_up.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/YubiKey_and_FreeRADIUS_via_PAM.adoc: Update
YubiKey_and_FreeRADIUS_via_PAM.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/YubiKey_and_FreeRADIUS_via_PAM.adoc: Update
YubiKey_and_FreeRADIUS_via_PAM.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/MacOS_X_Challenge-Response.adoc: Update
MacOS_X_Challenge-Response.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/MacOS_X_Challenge-Response.adoc: Update
MacOS_X_Challenge-Response.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/MacOS_X_Challenge-Response.adoc: Update
MacOS_X_Challenge-Response.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/MacOS_X_Challenge-Response.adoc: Update
MacOS_X_Challenge-Response.adoc
2014-10-31 Henrik Stråth <[email protected]>
* doc/MacOS_X_Challenge-Response.adoc: Update
MacOS_X_Challenge-Response.adoc
2014-10-31 Klas Lindfors <[email protected]>
* ykpamcfg.c: don't write to a constant pointer instead allocate action on the stack and copy the data there
2014-10-30 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Fixed adoc error
2014-10-30 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_FreeRADIUS_via_PAM.adoc: Update
YubiKey_and_FreeRADIUS_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_FreeRADIUS_via_PAM.adoc: Update
YubiKey_and_FreeRADIUS_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{Local_Authentication_Using_Challenge-Response.adoc =>
Authentication_Using_Challenge-Response.adoc}: Update and rename
Local_Authentication_Using_Challenge-Response.adoc to
Authentication_Using_Challenge-Response.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/YubiKey_and_OpenVPN_via_PAM.adoc: Update
YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/Yubikey_and_SSH_via_PAM.adoc: Update
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{YubikeyAndSSHViaPAM.txt => Yubikey_and_SSH_via_PAM.adoc}:
Update and rename YubikeyAndSSHViaPAM.txt to
Yubikey_and_SSH_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{YubikeyAndRadiusViaPAM.txt =>
Yubikey_and_Radius_via_PAM.adoc}: Update and rename
YubikeyAndRadiusViaPAM.txt to Yubikey_and_Radius_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{Yubikey-and-SELinux-on-Fedora-18-and-up.txt =>
Yubikey_and_SELinux_on_Fedora_18_and_up.txt}: Rename
Yubikey-and-SELinux-on-Fedora-18-and-up.txt to
Yubikey_and_SELinux_on_Fedora_18_and_up.txt
2014-10-29 Henrik Stråth <[email protected]>
* doc/{YubiKeyAndOpenVPNviaPAM.txt =>
YubiKey_and_OpenVPN_via_PAM.adoc}: Update and rename
YubiKeyAndOpenVPNviaPAM.txt to YubiKey_and_OpenVPN_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{YubiKeyAndFreeRADIUSwithsinglefactorauthenticationviaPAM.txt
=> YubiKey_and_FreeRADIUS_1FA_via_PAM.adoc}: Rename
YubiKeyAndFreeRADIUSwithsinglefactorauthenticationviaPAM.txt to
YubiKey_and_FreeRADIUS_1FA_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{YubiKeyAndFreeRADIUSviaPAM.txt =>
YubiKey_and_FreeRADIUS_via_PAM.adoc}: Rename
YubiKeyAndFreeRADIUSviaPAM.txt to
YubiKey_and_FreeRADIUS_via_PAM.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{UbuntuFreeRadiusYubiKey.txt =>
Ubuntu_FreeRadius_YubiKey.adoc}: Update and rename
UbuntuFreeRadiusYubiKey.txt to Ubuntu_FreeRadius_YubiKey.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{TwoFactorPAMConfiguration.txt =>
Two_Factor_PAM_Configuration.adoc}: Rename
TwoFactorPAMConfiguration.txt to Two_Factor_PAM_Configuration.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{MacOS_X_Challenge-Response.txt =>
MacOS_X_Challenge-Response.adoc}: Rename
MacOS_X_Challenge-Response.txt to MacOS_X_Challenge-Response.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{MacOSXChallengeResponse.txt =>
MacOS_X_Challenge-Response.txt}: Rename MacOSXChallengeResponse.txt
to MacOS_X_Challenge-Response.txt
2014-10-29 Henrik Stråth <[email protected]>
* doc/{Local_Authentication_Using_Challenge-Response.txt =>
Local_Authentication_Using_Challenge-Response.adoc}: Rename
Local_Authentication_Using_Challenge-Response.txt to
Local_Authentication_Using_Challenge-Response.adoc
2014-10-29 Henrik Stråth <[email protected]>
* doc/{LocalAuthenticationUsingChallengeResponse.txt =>
Local_Authentication_Using_Challenge-Response.txt}: Rename
LocalAuthenticationUsingChallengeResponse.txt to
Local_Authentication_Using_Challenge-Response.txt
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README: Update README
2014-10-29 Henrik Stråth <[email protected]>
* README.adoc: symlinked README
2014-10-24 Henrik Stråth <[email protected]>
* doc/YubiKeyAndOpenVPNviaPAM.txt: Update
YubiKeyAndOpenVPNviaPAM.txt
2014-10-24 Henrik Stråth <[email protected]>
* doc/UbuntuFreeRadiusYubiKey.txt: Fixed Asciidoc errors
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: add test for check_user_token()
2014-08-27 Klas Lindfors <[email protected]>
* tests/test.c: make argv const to get rid of warning
2014-08-27 Klas Lindfors <[email protected]>
* pam_yubico.c, util.c, util.h: move check_user_token() to util for testability..
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: use constants
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: close the tmpfile when done..
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: remove some warnings from the new test.
2014-08-27 Klas Lindfors <[email protected]>
* Makefile.am, pam_yubico.c: re-add libyubikey, needed.
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: add stdlib.h
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: some tests of loading chalresp state
2014-08-27 Klas Lindfors <[email protected]>
* tests/util_test.c: test other case in get_user_cfgfile_path()
2014-08-27 Klas Lindfors <[email protected]>
* Makefile.am, tests/util_test.c: basic test for
get_user_cfgfile_path()
2014-08-27 Klas Lindfors <[email protected]>
* .gitignore, tests/Makefile.am, tests/util_test.c: add beginnings
of a second test
2014-08-27 Klas Lindfors <[email protected]>
* pam_yubico.c, util.c, util.h: move includes around in an attempt
to include less
2014-08-27 Klas Lindfors <[email protected]>
* .gitignore, Makefile.am, pam_yubico.c: break out util.c into it's
own temporary library to make testing easier
2014-08-27 Klas Lindfors <[email protected]>
* Makefile.am, configure.ac, tests/Makefile.am, test.c =>
tests/test.c: move tests to subdir
2014-08-26 Klas Lindfors <[email protected]>
* NEWS, configure.ac: bump versions after release
2014-08-26 Klas Lindfors <[email protected]>
* NEWS: NEWS for 2.17
2014-08-26 Klas Lindfors <[email protected]>
* Makefile.am: add MANSOURCES to EXTRA_DIST on it's own line to not conflict with make release
2014-07-29 Klas Lindfors <[email protected]>
* pam_yubico.c: correctly mark strings in cfg struct as const
2014-07-29 Klas Lindfors <[email protected]>
* pam_yubico.c: fixup so urllist data is kept within it's own memory
before strtok fixes #41
2014-06-16 Klas Lindfors <[email protected]>