Changes In Branch require-login-if-needed Through [6938f7a82c] Excluding Merge-Ins
This is equivalent to a diff from 133c2dbd45 to 6938f7a82c
2015-07-15
| ||
20:10 | Merged in trunk Leaf check-in: 38771da1e8 user: rkeene tags: require-login-if-needed | |
2015-06-29
| ||
16:31 | Updated authoritative DoD PKI cert source and updated to latest DoD certs check-in: d4b40c4076 user: kvanals tags: trunk | |
2015-05-04
| ||
16:02 | Merged in trunk check-in: 6938f7a82c user: rkeene tags: require-login-if-needed | |
2015-03-22
| ||
06:25 | Updated with latest set of DoD and Federal certs check-in: 133c2dbd45 user: rkeene tags: trunk | |
06:25 | Added commericial PKI, but not referenced anywhere in CACKey check-in: 06f7fdb141 user: rkeene tags: trunk | |
2012-07-24
| ||
15:55 | Added basic stub for adding support for checking if LOGIN_REQUIRED is needed check-in: 6db637b204 user: rkeene tags: require-login-if-needed | |
Modified cackey.c from [65139610e9] to [60fa6fcd12].
︙ | |||
921 922 923 924 925 926 927 928 929 930 931 932 933 934 | 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | + + + + | CACKEY_DEBUG_PRINTF("Returning 0x%lx", retval); return(retval); } /* PC/SC Related Functions */ static cackey_ret cackey_login_required(struct cackey_slot *slot) { return(CACKEY_PCSC_E_NEEDLOGIN); } /* * SYNPOSIS * void cackey_slots_disconnect_all(void); * * ARGUMENTS * None * |
︙ | |||
1095 1096 1097 1098 1099 1100 1101 | 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 | - + + + + + + + - - - + + + + + + + + + + + | } /* * SYNPOSIS * void cackey_mark_slot_reset(struct cackey_slot *slot); * * ARGUMENTS |
︙ | |||
2970 2971 2972 2973 2974 2975 2976 | 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 | - - | CACKEY_DEBUG_PRINTF("Got \"WRONG CLASS\", this means we are talking to the wrong object (likely because the card went away) -- resetting"); } else { CACKEY_DEBUG_PRINTF("Security status not satisified (respcode = 0x%04x). Returning NEEDLOGIN", (int) respcode); } cackey_mark_slot_reset(slot); |
︙ | |||
4532 4533 4534 4535 4536 4537 4538 | 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 | - - - - + - | if (slot_reset) { cackey_slots[currslot].active = 1; cackey_slots[currslot].internal = 0; cackey_slots[currslot].pcsc_reader = strdup(pcsc_readers); cackey_slots[currslot].pcsc_card_connected = 0; cackey_slots[currslot].transaction_depth = 0; cackey_slots[currslot].transaction_need_hw_lock = 0; |
︙ | |||
5526 5527 5528 5529 5530 5531 5532 | 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 | - - - - - - | cackey_mutex_unlock(cackey_biglock); return(CKR_GENERAL_ERROR); } cackey_sessions[hSession].state = CKS_RO_PUBLIC_SESSION; |
︙ |