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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
|
2015-11-12 Klas Lindfors <klas@yubico.com>
* NEWS: NEWS for 2.15
2015-11-11 Klas Lindfors <klali@avm.se>
* : Merge pull request #36 from mikemn/master Add proxy support via Curl
2015-07-09 Klas Lindfors <klas@yubico.com>
* ykclient.c: make sure there is always at least one handle found with clang scan-build
2015-07-05 Klas Lindfors <klas@yubico.com>
* Makefile.am, configure.ac: add help2adoc for releases
2015-06-24 Klas Lindfors <klas@yubico.com>
* configure.ac: bump libtool variables correctly since a symbol was
added
2015-06-24 Klas Lindfors <klas@yubico.com>
* tool.c: tool: use server response to print out more debug info
2015-06-24 Klas Lindfors <klas@yubico.com>
* libykclient.map, ykclient.c, ykclient.h: add an interface to fetch
the last server response
2015-06-24 Klas Lindfors <klas@yubico.com>
* ykclient.c: add timestamp to the default query
2015-06-15 Klas Lindfors <klas@yubico.com>
* tool.c: add --cai to commandline tool help
2015-03-05 Klas Lindfors <klas@yubico.com>
* NEWS, configure.ac: bump versions
2015-03-05 Klas Lindfors <klas@yubico.com>
* NEWS: NEWS for 2.14
2015-02-20 Klas Lindfors <klas@yubico.com>
* tool.c: client id is unsigned
2015-02-12 Klas Lindfors <klas@yubico.com>
* ykclient.c: move user_agent out of struct since it's static mark the ykc struct as static move ADD_HASH around for clarity
2015-02-09 Klas Lindfors <klas@yubico.com>
* cdecode.c, ykclient.c, ykclient.h: fix indentation
2015-01-21 Klas Lindfors <klas@yubico.com>
* .gitignore, .travis.yml, Makefile.am, build-and-test.sh,
configure.ac: add coverage processing
2015-01-14 Klas Lindfors <klali@avm.se>
* : Merge pull request #30 from NetworksAreMadeOfString/master Default URL templates now use SSL to prevent tampering
2015-01-07 Klas Lindfors <klali@avm.se>
* : Merge pull request #29 from
noahwilliamsson/fix-curl_easy_escape-usage [PATCH] Use argument of proper type in call to curl_easy_escape()
2014-10-29 Henrik Stråth <minisu@users.noreply.github.com>
* README: Update README
2014-10-29 Henrik Stråth <henrik@yubico.com>
* README.adoc: symlinked README
2014-10-29 Henrik Stråth <minisu@users.noreply.github.com>
* README: Update README
2014-09-15 Klas Lindfors <klas@yubico.com>
* NEWS, configure.ac: bump versions
2014-09-12 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Don't mention github.
2014-09-12 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.13.
2014-09-12 Simon Josefsson <simon@josefsson.org>
* BLURB, NEWS: Doc fix.
2014-08-21 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2014-06-03 Klas Lindfors <klas@yubico.com>
* ykclient.h: add prototype for ykclient_set_ca_info() to ykclient.h
2014-06-03 Klas Lindfors <klas@yubico.com>
* ykclient.c: skip over responses where the status isn't CURLE_OK fixes #25
2014-06-03 Klas Lindfors <klas@yubico.com>
* tests/selftest.c: add a test exposing issue #25
2014-06-03 Klas Lindfors <klas@yubico.com>
* tests/Makefile.am: add the warnings package for our tests
2014-03-18 Klas Lindfors <klas@yubico.com>
* BLURB: add BLURB
2013-10-18 Simon Josefsson <simon@josefsson.org>
* cdecode.c, cdecode.h, cencode.c, cencode.h, hmac.c,
sha-private.h, sha.h, sha1.c, sha224-256.c, sha384-512.c, tool.c,
usha.c, ykclient.c, ykclient.h: Indent code.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.12.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* tests/Makefile.am: Drop unnecessary -lcurl in self-tests.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* libykclient.map: Fix versioning script.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, configure.ac, libykclient.map,
m4/ld-version-script.m4, m4/valgrind-tests.m4, tests/Makefile.am:
Add shared library versioning script. Use valgrind for self-tests.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* NEWS: Improve NEWS.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* m4/.placeholder: Remove.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* COPYING: Bump years.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* doc: Remove doc/.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* .gitignore, configure.ac: Use build-aux/.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Drop wiki traces.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* .gitmodules: Drop .gitmodules.
2013-10-18 Simon Josefsson <simon@josefsson.org>
* README: Improve README.
2013-10-07 Klas Lindfors <klas@yubico.com>
* tool.c, ykclient.c: add CAINFO patch from github user Mrten adds ykclient_set_ca_info() to the api resolves #24
2013-10-02 Klas Lindfors <klas@yubico.com>
* : commit 76f2f3c166f70b17ceb753b36a86d8665211cd2b Author: Klas
Lindfors <klas@yubico.com> Date: Wed Oct 2 14:35:01 2013 +0200
2013-10-02 Klas Lindfors <klas@yubico.com>
* ykclient.c: drop unused variable
2013-10-02 Klas Lindfors <klas@yubico.com>
* ykclient.c: better variable name, doesn't cause shadowing
2013-10-01 Klas Lindfors <klas@yubico.com>
* .travis.yml: install help2man
2013-10-01 Klas Lindfors <klas@yubico.com>
* tests/selftest.c: test with new url format
2013-10-01 Klas Lindfors <klas@yubico.com>
* ykclient.c, ykclient.h: add support for "new" url templates without the query string
2013-10-01 Klas Lindfors <klas@yubico.com>
* ykclient.c: break out expanding URL
2013-08-26 Simon Josefsson <simon@josefsson.org>
* configure.ac: Print more build information.
2013-08-26 Simon Josefsson <simon@josefsson.org>
* README: Revert "add note about autoreconf and curl m4 file." This reverts commit 3c96692c1724e71aac8cbc7f1135445fbe040ca3.
2013-08-26 Simon Josefsson <simon@josefsson.org>
* .gitignore, Makefile.am, NEWS, configure.ac, m4/pkg.m4,
tests/Makefile.am: Use pkg-config to find curl.
2013-08-19 Klas Lindfors <klas@yubico.com>
* README: add note about autoreconf and curl m4 file. references #21
2013-07-24 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2013-07-24 Simon Josefsson <simon@josefsson.org>
* .gitignore: Ignore more.
2013-07-24 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.11.
2013-07-05 Simon Josefsson <simon@josefsson.org>
* .gitignore, Makefile.am, NEWS, b64/cdecode.c => cdecode.c,
b64/cdecode.h => cdecode.h, b64/cencode.c => cencode.c,
b64/cencode.h => cencode.h, configure.ac, rfc4634/hmac.c => hmac.c,
rfc4634/sha-private.h => sha-private.h, rfc4634/sha.h => sha.h,
rfc4634/sha1.c => sha1.c, rfc4634/sha224-256.c => sha224-256.c,
rfc4634/sha384-512.c => sha384-512.c, tests/Makefile.am,
tests/selftest.c, rfc4634/usha.c => usha.c, ykclient.c,
ykclient_server_response.c: Fix subdir-objects breakage with latest
automake.
2013-07-04 Klas Lindfors <klas@yubico.com>
* README, tests/selftest.c: switch the tests to a full-length OTP
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Fix wiki checkin.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Fix KEYID usage.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.10.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Fix dist.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am, README, simple.mk: Drop simple.mk build style.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Update release target.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am, tool.c, ykclient.c, ykclient.h,
ykclient_server_response.c, ykclient_server_response.h,
ykclient_version.c, ykclient_version.h.in: Indent code.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* configure.ac: Bump libtool version since we added APIs.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* README: Clarify help2man requirement.
2013-05-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: ykclient.1: Don't build before binary is built.
Reported by eworm-de.
2013-05-13 Simon Josefsson <simon@josefsson.org>
* .gitignore, Makefile.am, NEWS, configure.ac, tool.c: ykclient:
Cleanup command line tool a bit to make it more useful.
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Reduce indentation in parts of ykclient_request_send
to make it easier to understand. Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Call curl_multi_perform once more on cleanup Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Leave it to the caller to cleanup the connection The behaviour of the libcurl multi interface is not well documented. One apparent issue is if you do not wait for all easy handle
requests to complete and remove them from the multi handle, libcurl
will immediately tear down the connection, sending a TCP RST to the
server. Assuming the calling application implements its own connection pool
logic (as FreeRADIUS does), it can create multiple handles, and only
cleanup when the handle is next used, by which time the transfer
will of hopefully completed. Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-15 Simon Josefsson <simon@josefsson.org>
* .gitignore, ykclient_version.c: Add implementation of versioning
interface.
2013-04-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, configure.ac, tests/selftest.c, ykclient.h,
ykclient_version.h.in: Add versioning information to library.
2013-04-15 Simon Josefsson <simon@josefsson.org>
* ykclient.h, ykclient_errors.h, ykclient_server_response.h: Cleanup
ykclient_errors.h split.
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* .gitignore: Ignore .swp files Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Quit early on OK. Continue processing after
YKCLIENT_PARSE_ERROR and YKCLIENT_REPLAYED_REQUEST Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: We should check the state of the nonce we were passed,
not the one in ykc
2013-04-11 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Remove and re-add easy handles to the multihandle on
cleanup (this is confusingly documented requirement of libcurl) Signed-off-by: Simon Josefsson <simon@josefsson.org>
2013-04-15 Simon Josefsson <simon@josefsson.org>
* ykclient.c: Check for out of memory in ykclient_generate_nonce().
2013-04-15 Simon Josefsson <simon@josefsson.org>
* NEWS, tests/selftest.c, ykclient.c, ykclient.h: Add
ykclient_global_init and ykclient_global_done.
2013-04-10 Klas Lindfors <klas@yubico.com>
* ykclient_server_response.c: add void to function arguments
2013-04-10 Klas Lindfors <klas@yubico.com>
* ykclient.c: remove extra ;
2013-04-10 Klas Lindfors <klas@yubico.com>
* ykclient.c: add switch default case (shouldn't be needed but will
silence warnings).
2013-04-10 Klas Lindfors <klas@yubico.com>
* ykclient_server_response.h: silence warning, function prototype
should specify void argument.
2013-04-10 Klas Lindfors <klas@yubico.com>
* AUTHORS: expand the AUTHORS file
2013-04-10 Klas Lindfors <klas@yubico.com>
* tool.c: fix warnings in the ykclient tool
2013-04-09 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* Makefile.am, ykclient.c, ykclient.h, ykclient_errors.h,
ykclient_server_response.c, ykclient_server_response.h: Fix warnings
from GCC and clang
2013-04-09 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* .gitignore: Don't ignore changes to manywarnings.m4 and
warnings.m4
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* .gitignore: Ignore products of make check
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c, ykclient.h: Use new handles and add separate function
for processing requests without allocating new handles Breakout URL expansion into a new function Use handles for storing expanded URLs Breakout nonce generation into its own function Only build user_agent string once on initialise
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Move curl callback
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c, ykclient.h: Use proper typedef instead of int in
function return types (this allows the compiler to detect return
values outside of the enum)
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Move example functions to bottom of file
2013-04-04 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c, ykclient.h: Add new functions for creating, cleaning
and destroying handles
2013-03-29 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* .gitignore: Simplify and fix .gitignore
2013-03-29 Arran Cudbard-Bell <a.cudbardb@freeradius.org>
* ykclient.c: Make formatting consistent
2013-01-18 Klas Lindfors <klas@yubico.com>
* configure.ac: we need automake 1.11 nowadays
2012-08-24 Clemens Lang <neverpanic@gmail.com>
* configure.ac: Silence warning in automake >= 1.12
2012-11-07 Klas Lindfors <klas@yubico.com>
* tests/Makefile.am, tests/selftest.c: add test cases for hmac-sha1
from rfc 2202
2012-11-06 Klas Lindfors <klas@yubico.com>
* README, configure.ac: add whitelisting of AM_PROG_AR to work with
automake 1.12
2012-09-13 Klas Lindfors <klas@yubico.com>
* .travis.yml: add travis continuous-integration configuration
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: assign out so we can be sure it's assigned before
return
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: code is never used, remove it and move other
declaration up
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: cast ykc->key to const unsigned char to keep constness
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: snprintf returns an int, check if it's negative
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: move up declarations and convert loop variable to
size_t to avoid warnings
2012-08-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: use size_t for looping to avoid warnings
2012-08-27 Klas Lindfors <klas@yubico.com>
* ykclient.c: as curl_ret is a CURLMCode, use CURLM_OK instead
2012-08-27 Klas Lindfors <klas@yubico.com>
* Makefile.am, configure.ac, m4/manywarnings.m4, m4/warnings.m4: add
the same warnings package used in yubico-c
2012-08-24 Clemens Lang <neverpanic@gmail.com>
* ykclient.c: Fix clang -Wconversion warning curl_multi_strerror expects a CURLMcode, but is given a CURLcode in
line 673, causing: ykclient.c:673:63: warning: implicit conversion from enumeration
type 'CURLcode' to different enumeration type 'CURLMcode'
[-Wconversion] fprintf(stderr, "Error with curl: %s\n",
curl_multi_strerror(curl_ret)); ~~~~~~~~~~~~~~~~~~~ ^~~~~~~~ This can be fixed by changing the type of the variable holding the
return value of curl_multi_perform to CURLMcode (as its declaration
says it is).
2012-08-24 Clemens Lang <neverpanic@gmail.com>
* ykclient.c: Fix clang warning for tautologic compare size_t is defined to be unsigned, thus size_t < 0 is a tautologic
compare.
2012-08-13 Rony Shapiro <ronys@users.sourceforge.net>
* README: Tweak README: State libcurl-dev dependency explicitly,
correct make invokation.
2012-08-07 Klas Lindfors <klas@yubico.com>
* NEWS, configure.ac: bump versions after version 2.9
2012-08-07 Klas Lindfors <klas@yubico.com>
* simple.mk: add curl with LDLIBS instead of LDFLAGS
2012-08-07 Klas Lindfors <klas@yubico.com>
* NEWS: NEWS for 2.9
2012-08-07 Klas Lindfors <klas@yubico.com>
* tests/Makefile.am, tests/selftest.c: add test for
encoding/decoding strings to base64
2012-08-06 Klas Lindfors <klas@yubico.com>
* b64/cdecode.c, b64/cencode.c: make the base64 implementation work
on ARM char is unsigned by default on ARM, leading to problems, see:
http://sourceforge.net/tracker/?func=detail&aid=3313901&group_id=152942&atid=785907Thanks to user "yann" on Yubico forums for noticing this bug.
2012-06-21 Klas Lindfors <klas@yubico.com>
* ykclient.c: fix bugs with curl 7.16 (at least) with older curl curl_multi can sometimes return information from old
discarded curl_easy handles. avoid this by moving init/cleanup of
curl_multi to the request function and get a new one for each
request.
2012-06-21 Klas Lindfors <klas@yubico.com>
* ykclient.c: compability with curl before 7.20.0 curl before 7.20.0 can return CURLM_CALL_MULTI_PERFORM, when that
happens continue so we call it immeadiately again.
2012-06-15 Klas Lindfors <klas@yubico.com>
* NEWS, configure.ac: bump versions post-release
2012-06-15 Fredrik Thulin <fredrik@yubico.com>
* tests/Makefile.am: Test cases need cURL now.
2012-06-15 Klas Lindfors <klas@yubico.com>
* NEWS: NEWS for version 2.8
2012-06-15 Klas Lindfors <klas@yubico.com>
* README, configure.ac: remove -Wno-extra-portability, it breaks on
automake before 1.11.2
2012-06-15 Fredrik Thulin <fredrik@yubico.com>
* tool.c: Remove extra %'s in usage output.
2012-06-07 Klas Lindfors <klas@yubico.com>
* m4/.placeholder: placeholder file so the m4 directory exists
2012-06-05 Klas Lindfors <klas@yubico.com>
* : commit 1179d1b2b014d39ce6834e4d68686f80bd514d3d Author: Clemens
Lang <neverpanic@gmail.com> Date: Tue Jun 5 02:50:23 2012 +0200
2012-05-30 Klas Lindfors <klas@yubico.com>
* : commit e8da9e552d58317d2e4fd5ea1e82cfcceaad6415 Author: Klas
Lindfors <klas@yubico.com> Date: Wed May 30 10:13:36 2012 +0200
2012-05-30 Klas Lindfors <klas@yubico.com>
* ykclient.c: move around nonce allocation allocate space for the nonce in ykclient_request(), only using
ykc->nonce for user supplied nonce.
2012-05-30 Klas Lindfors <klas@yubico.com>
* ykclient.c: remove old comment about only one url, no longer
accurate
2012-05-29 Klas Lindfors <klas@yubico.com>
* : commit b0e1a5472546d20d96f675c32f0f4f0d9f31ae2a Author: Klas
Lindfors <klas@yubico.com> Date: Tue May 29 09:52:22 2012 +0200
2012-05-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: do url-encoding of the passed in OTP.
2012-05-28 Klas Lindfors <klas@yubico.com>
* ykclient.c: generate a new nonce for each request unless the nonce
is set by the user
2012-05-23 Jay Kline <jay.kline.ctr@hpcmo.hpc.mil>
* tool.c: Add copyright notice
2012-05-16 Klas Lindfors <klas@yubico.com>
* tests/selftest.c: do curl_clobal_init() and curl_global_cleanup()
so valgrind is quiter
2012-05-15 Klas Lindfors <klas@yubico.com>
* ykclient.c: move up variable declarations to scope start
2012-05-15 Klas Lindfors <klas@yubico.com>
* : commit 12b24e66417d719e61a3ef001a27de4e912fc45b Author: Simon
Josefsson <simon@josefsson.org> Date: Tue May 15 10:49:52 2012
+0200
2012-05-15 Klas Lindfors <klas@yubico.com>
* : commit 48f78fcc56ba5ad6c27ddc625c65bba1c1fe8ecc Author: Klas
Lindfors <klas@yubico.com> Date: Mon May 14 14:22:57 2012 +0200
2012-05-14 Klas Lindfors <klas@yubico.com>
* ykclient.c, ykclient.h: check malloc and num_templates in
set_url_templates() let it return int
2012-05-14 Klas Lindfors <klas@yubico.com>
* ykclient.c: forgotten free, leaked on every call.
2012-05-14 Klas Lindfors <klas@yubico.com>
* tests/selftest.c: run the main bulk of the tests with default url add test for setting several urls and doing request
2012-05-14 Klas Lindfors <klas@yubico.com>
* ykclient.c, ykclient.h: add features to use curl_multi to speak
with several validation servers add ykc_set_url_templates(), all other work only internal,
interfaces kept.
2012-05-04 Jay Kline <jay.kline.ctr@hpcmo.hpc.mil>
* tool.c: Add option to specify CA path Add the --ca option to the utility to allow users to specify a
separate CA path
2012-05-04 Jay Kline <jay.kline.ctr@hpcmo.hpc.mil>
* ykclient_server_response.c: Perform memset after checking malloc
not after
2012-04-27 Lee Hinman <lee.hinman.ctr@hpc.mil>
* ykclient.c: Fixed segfault caused by curl error - libcurl error were causing ykclient_request to free resources
before they had been allocated - also added a fprintf to stderr to print out the curl error, the generic one did not provide enough info for someone to debug
2012-03-21 Jay Kline <jay.kline.ctr@hpcmo.hpc.mil>
* ykclient.c, ykclient_server_response.c: Fix segfaults * Added memset after malloc of structs
2012-01-23 Simon Josefsson <simon@josefsson.org>
* configure.ac: Use silent rules.
2012-01-23 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, ykclient.h: Add C++ protection.
2012-01-23 Simon Josefsson <simon@josefsson.org>
* COPYING, Makefile.am, README, configure.ac, simple.mk,
tests/Makefile.am, tests/selftest.c, tool.c, ykclient.c,
ykclient.h, ykclient_server_response.c, ykclient_server_response.h:
Bump copyright years.
2011-11-23 Simon Josefsson <simon@josefsson.org>
* README, configure.ac: Shift blame.
2011-11-23 Fredrik Thulin <fredrik@yubico.com>
* NEWS: Release date for v2.7.
2011-11-23 Fredrik Thulin <fredrik@yubico.com>
* Makefile.am: distcheck: fix test of simple.mk
2011-11-17 Fredrik Thulin <fredrik@yubico.com>
* NEWS, configure.ac: Prepare version 2.7.
2011-11-17 Fredrik Thulin <fredrik@yubico.com>
* Makefile.am: Two srcdir fixes in release target.
2011-11-17 Fredrik Thulin <fredrik@yubico.com>
* ykclient_server_response.c: Return YKCLIENT_BAD_SERVER_SIGNATURE
on missing signature. This differentiates missing signature from no (other) parameters
returned or general parse failures.
2011-11-17 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c, ykclient.c: Verify signatures by default when we
can. Problem reported by Dominic Rutherford
<dominic@rutherfordfamily.co.uk>.
2011-06-06 Simon Josefsson <--all>
* NEWS, configure.ac: Bump versions.
2011-06-06 Simon Josefsson <--all>
* .gitignore: Update.
2011-06-06 Simon Josefsson <--all>
* tool.c: Remove unused parameter.
2011-06-06 Simon Josefsson <--all>
* ykclient_server_response.c: Silence compiler warnings. Reported by Jussi Sallinen <jussi@jus.si>.
2011-06-06 Simon Josefsson <--all>
* NEWS: Version 2.6.
2011-06-06 Simon Josefsson <--all>
* NEWS: Update.
2011-06-06 Simon Josefsson <--all>
* Makefile.am, simple.mk: Fix release target.
2011-06-06 Simon Josefsson <--all>
* configure.ac: Bump versions.
2011-06-06 Simon Josefsson <--all>
* Makefile.am: Fix release.
2011-06-06 Simon Josefsson <--all>
* NEWS: Add.
2011-06-06 Simon Josefsson <--all>
* ykclient.c, ykclient.h, ykclient_server_response.c,
ykclient_server_response.h: Replace // with /*, the former is not
C89.
2011-06-06 Simon Josefsson <--all>
* tool.c, ykclient.c, ykclient.h, ykclient_server_response.c,
ykclient_server_response.h: Indent.
2011-06-06 Simon Josefsson <--all>
* tool.c: Use fprintf+exit instead of errx. Reported by Jussi Sallinen <jussi@jus.si>.
2011-05-31 Fredrik Thulin <fredrik@yubico.com>
* NEWS: Document changes between 2.4 and 2.5.
2011-05-30 Fredrik Thulin <fredrik@yubico.com>
* configure.ac: Prepare for release 2.5. Library code modified and interfaces added.
2011-05-30 Fredrik Thulin <fredrik@yubico.com>
* : commit 5ef5b810b1be12a7883612d65a361d0d3be01324 Author: Tollef
Fog Heen <tfheen@err.no> Date: Fri Mar 11 14:02:55 2011 +0100
2011-03-08 Fredrik Thulin <fredrik@yubico.com>
* Makefile.am: Fix 'make check' before 'make'.
2011-03-07 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: Disable tests using Internet connectivity using
define. Launchpad PPA build system does not allow outgoing connections.
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c, ykclient.c, ykclient.h: Restore ability to send
signed requests to v1 validation servers. To do that, we need to be able to remove the nonce, since the v1
server won't include the nonce in the HMAC input.
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: URL tinkering
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: Add v1.0 test case.
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: Update default wsapi URL.
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* tests/Makefile.am: Include path to ykclient.h.
2011-03-04 Fredrik Thulin <fredrik@yubico.com>
* : commit c40063ae88a96a1dad9640e803823b8115ce32c2 Author: Fredrik
Thulin <fredrik@yubico.com> Date: Fri Mar 4 10:24:31 2011 +0100
2011-03-03 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Change default URL to version 2.0 web service.
2011-03-03 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Don't crash on absence of otp/nonce in server
response.
2011-03-02 Fredrik Thulin <fredrik@yubico.com>
* Makefile.am: release: restore tag naming.
2011-03-02 Fredrik Thulin <fredrik@yubico.com>
* NEWS: Document changes between 2.3 and 2.4.
2011-03-01 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: Use assert().
2011-03-01 Fredrik Thulin <fredrik@yubico.com>
* tests/selftest.c: Add test info printouts.
2011-02-28 Fredrik Thulin <fredrik@yubico.com>
* Makefile.am, configure.ac, tests/Makefile.am, selftest.c =>
tests/selftest.c: Fix insecure rpath issue. http://code.google.com/p/yubico-c-client/issues/detail?id=6
2011-02-24 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Verify OTP in response received matches the one we
sent. This is to protect us from a man in the middle sending us a
previously seen genuine response again (such as an status=OK
response even though the real server will respond
status=REPLAYED_OTP in a few milliseconds.
2011-02-24 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Fix signing of request. HMAC signatures were broken since the nonce was appended after the
signature had been calculated.
2011-02-23 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: whitespace
2011-02-23 Fredrik Thulin <fredrik@yubico.com>
* : commit 4c4c7cc53ec411df7d35a5399df397ad7c526075 Author: Fredrik
Thulin <fredrik@yubico.com> Date: Wed Feb 23 10:34:39 2011 +0100
2011-02-23 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Avoid duplicate nonces. The seed to srandom () must change with every request, otherwise we
will get the same nonce and the validation server will reject the
request. At the moment we don't consider it necessary to have a
cryptographically secure nonce generation but rather favour
portability and simplicity.
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c, ykclient.h: Handle server response NOT_ENOUGH_ANSWERS.
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: Verify nonce in server response matches ours. Part of ykclient-2.3-nonce.patch by qistoph@gmail.com.
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c, ykclient.h: Check result of CURL operation, and avoid
segfault on error. Patch from qistoph@gmail.com in http://code.google.com/p/yubico-c-client/issues/detail?id=8
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* ykclient_server_response.c: Fix memory leaks.
2011-02-17 Sebastien Martini <seb@dbzteam.org>
* Makefile.am, selftest.c, simple.mk, tool.c, ykclient.c,
ykclient.h, ykclient_server_response.c, ykclient_server_response.h:
Check server response HMAC signature. Some changes to original patch by Fredrik Thulin
<fredrik@yubico.com>. Original patch submitted in
http://code.google.com/p/yubico-c-client/issues/detail?id=1
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c, ykclient.h: Handle server response
status=REPLAYED_REQUEST. Part of ykclient-2.3-nonce.patch by qistoph@gmail.com.
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* tool.c: Implement option parsing with getopt_long. Done in anticipation of the various options that might be
interesting to set with Validation protocol 2.0.
2011-02-18 Fredrik Thulin <fredrik@yubico.com>
* tool.c, ykclient.c, ykclient.h: Prepare ykclient_verify_otp_v2()
to accept more than one URL. Validation protocol 2.0 includes support for muliple validation
servers to be contacted simultaneously, make the arguments for this
function handle that even though we don't currently support more
than one URL (will result in YKCLIENT_NOT_IMPLEMENTED). Also make it possible for caller to pass a ykclient_t for special
CURL settings etc.
2011-02-17 Fredrik Thulin <fredrik@yubico.com>
* ykclient.c: ykclient_verify_otp: explicit return.
2011-02-17 Fredrik Thulin <fredrik@yubico.com>
* configure.ac: Prepare for version 2.4.
2011-02-17 Fredrik Thulin <fredrik@yubico.com>
* ykclient.h: Add YKCLIENT_NOT_IMPLEMENTED, missing from last
commit.
2011-02-17 Fredrik Thulin <fredrik@yubico.com>
* tool.c, ykclient.c, ykclient.h: Restore library call
ykclient_verify_otp. Instead of breaking backwards compatibility by adding URL parameter
to ykclient_verify_otp(), we add another ykclient_verify_otp_v2()
with more parameters. That function also gets a currently unused argument api_key, to not
have to add another function when I merge another patch soon.
2011-02-17 Fredrik Thulin <fredrik@yubico.com>
* tool.c: Make argument parsing easier to extend.
2011-02-16 Fredrik Thulin <fredrik@yubico.com>
* doc: sync
2011-02-16 Fredrik Thulin <fredrik@yubico.com>
* .gitignore: ignore more autoconf files
2011-02-16 Fredrik Thulin <fredrik@yubico.com>
* .gitignore: init
2011-02-16 Fredrik Thulin <fredrik@yubico.com>
* .gitmodules, Makefile.am, doc: Git(hub) adaptions.
2011-02-16 Fredrik Thulin <fredrik@yubico.com>
* README: New asciidoc syntax for Github wiki.
2011-02-11 Remi Mollon <remi.mollon@cern.ch>
* tool.c, ykclient.c, ykclient.h: * Generate randomly a NONCE value to be compliant with Validation
protocol v2 => will this break protocol v1 compatibility of this extra
parameter will just be ignored? * Add possibility to specify validation server URL
2009-06-22 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Fix release target.
2009-05-11 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.3.
2009-05-11 Simon Josefsson <simon@josefsson.org>
* configure.ac: Bump libtool library version.
2009-05-11 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, b64/cdecode.c, b64/cdecode.h, selftest.c,
simple.mk, ykclient.c, ykclient.h: Add ykclient_set_client_b64. Fix
mem leaks. Fix multiple request response problem.
2009-05-05 Simon Josefsson <simon@josefsson.org>
* simple.mk: Clean more. Add MORE_CFLAGS.
2009-03-31 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2009-03-31 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.2.
2009-03-31 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Fix release target.
2009-03-30 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2009-03-30 Simon Josefsson <simon@josefsson.org>
* README: Improve build instructions.
2009-03-30 Simon Josefsson <simon@josefsson.org>
* README: Don't always run autoreconf.
2009-03-30 Simon Josefsson <simon@josefsson.org>
* README: Do 'make install' too.
2009-03-27 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, tool.c, ykclient.c, ykclient.h: Change API
ykclient_verify_otp to take a hex key. Accept NULL hex keys.
2009-03-27 Simon Josefsson <simon@josefsson.org>
* NEWS, selftest.c, ykclient.c, ykclient.h: Add new API
ykclient_set_client_hex.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Dist more.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.1.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, b64/cencode.c, b64/cencode.h, rfc4634/hmac.c,
rfc4634/sha-private.h, rfc4634/sha.h, rfc4634/sha1.c,
rfc4634/sha224-256.c, rfc4634/sha384-512.c, rfc4634/usha.c,
selftest.c, simple.mk, ykclient.c, ykclient.h: Create signatures on
requests. Add new API ykclient_get_last_url.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* COPYING: Fix copyright year.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 2.0.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* simple.mk: Update.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* README: Update documentation.
2009-03-25 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, configure.ac, libykclient.c, selftest.c,
tool.c, ykclient.c, libykclient.h => ykclient.h: Cleanup library
interface.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.5.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* libykclient.c: Fix mem release of url.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* libykclient.c: Describe new error code.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* libykclient.h: Add new error code for printf errors.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* libykclient.c: Don't use asprintf, for Solaris. Fix memory leaks.
2009-01-13 Simon Josefsson <simon@josefsson.org>
* Makefile.am, configure.ac, libcurl.m4 => m4/libcurl.m4: Put m4
macros in m4/.
2008-09-17 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, configure.ac: Use libtool
-export-symbols-regex.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.4.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* configure.ac: Bump versions.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* Makefile.am: Add aclocal -I for libcurl.m4.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.3.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* selftest.c: Test new APIs.
2008-09-15 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac, libykclient.c, libykclient.h: ykclient: Add
new API yubikey_client_set_url_template.
2008-07-24 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.2.
2008-07-24 Simon Josefsson <simon@josefsson.org>
* Makefile.am, NEWS, configure.ac, ykclient.c: Install ykclient.h.
Set exit code in ykclient. Bump versions.
2008-06-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.1.
2008-06-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Fix.
2008-06-25 Simon Josefsson <simon@josefsson.org>
* NEWS: Add.
2008-06-16 Simon Josefsson <simon@josefsson.org>
* NEWS, configure.ac: Bump versions.
2008-06-16 Simon Josefsson <simon@josefsson.org>
* NEWS: Version 1.0.
2008-06-16 Simon Josefsson <simon@josefsson.org>
* AUTHORS, COPYING, Makefile.am, NEWS, README, configure.ac,
libcurl.m4, libykclient.c, libykclient.h, selftest.c, simple.mk,
ykclient.c: Initial import.
2008-06-16 no author <no.author@unknown.example.org>
* Initial directory structure.
|