Overview
| Comment: | Updated documentation for cackey_get_data | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | piv | 
| Files: | files | file ages | folders | 
| SHA1: | a02a88154785b1c23a8a5f9a8f0bc366 | 
| User & Date: | rkeene on 2013-01-14 17:56:16 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2013-01-15 | ||
| 04:48 | Updated code so that information on accessing each certificate for different kinds of cards is not shared check-in: dc6044978a user: rkeene tags: piv | |
| 2013-01-14 | ||
| 17:56 | Updated documentation for cackey_get_data check-in: a02a881547 user: rkeene tags: piv | |
| 17:53 | Updated extended modes to use BER encoding and added some basic comments check-in: de23309dd3 user: rkeene tags: piv | |
Changes
Modified cackey.c from [d345cec881] to [f720f246a4].
| ︙ | ︙ | |||
| 1658 1659 1660 1661 1662 1663 1664 | 
	CACKEY_DEBUG_PRINTF("APDU Returned an error, returning in failure");
	return(CACKEY_PCSC_E_GENERIC);
}
/*
 * SYNPOSIS
 | | | | | 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 | 
	CACKEY_DEBUG_PRINTF("APDU Returned an error, returning in failure");
	return(CACKEY_PCSC_E_GENERIC);
}
/*
 * SYNPOSIS
 *     ssize_t cackey_get_data(struct cackey_slot *slot, unsigned char *buffer, size_t count, unsigned char oid[3]);
 *
 * ARGUMENTS
 *     struct cackey_slot *slot
 *         Slot to send commands to
 *
 *     unsigned char *buffer
 *         [OUT] Buffer
 *
 *     size_t count
 *         Number of bytes to attempt to read
 *
 *     unsigned char oid[3]
 *         3-byte OID to read
 *
 *
 * RETURN VALUE
 *     This function returns the number of bytes actually read, or -1 on error.
 *
 * NOTES
 *     None
 | 
| ︙ | ︙ |