Check-in [cfa10c1ef8]
Overview
Comment:Cleaned up debug messages
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | piv
Files: files | file ages | folders
SHA1:cfa10c1ef86b79580e2e84f2ce9bd38b872b7cd9
User & Date: rkeene on 2013-01-10 05:00:41
Other Links: manifest | tags
Context
2013-01-10
05:02
Added Makefile to generate certs for federal CA chain check-in: 69e6931bb8 user: rkeene tags: piv
05:00
Cleaned up debug messages check-in: cfa10c1ef8 user: rkeene tags: piv
04:59
Updated to provide basic (and buggy) PIV functionality check-in: b9b26ebc73 user: rkeene tags: piv
Changes

Modified cackey.c from [d2a004aade] to [04de0bb64d].

  2369   2369   
  2370   2370   	/* Select the CCC Applet */
  2371   2371   	send_ret = cackey_select_applet(slot, ccc_aid, sizeof(ccc_aid));
  2372   2372   	if (send_ret != CACKEY_PCSC_S_OK) {
  2373   2373   		/* Try PIV application */
  2374   2374   		send_ret = cackey_select_applet(slot, piv_aid, sizeof(piv_aid));
  2375   2375   		if (send_ret == CACKEY_PCSC_S_OK) {
  2376         -			CACKEY_DEBUG_PRINTF("We have a PIV card, doing the needful");
         2376  +			CACKEY_DEBUG_PRINTF("We have a PIV card -- not using the CCC, pulling pre-selected keys");
  2377   2377   
  2378   2378   			piv = 1;
  2379   2379   		} else {
  2380   2380   
  2381   2381   			CACKEY_DEBUG_PRINTF("Unable to select CCC Applet, returning in failure");
  2382   2382   
  2383   2383   			/* Terminate SmartCard Transaction */