JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Security for Developers Guide
search filter icon
search icon

Document Information

Preface

1.  Oracle Solaris Security for Developers (Overview)

2.  Developing Privileged Applications

3.  Writing PAM Applications and Services

4.  Writing Applications That Use GSS-API

5.  GSS-API Client Example

6.  GSS-API Server Example

7.  Writing Applications That Use SASL

8.  Introduction to the Oracle Solaris Cryptographic Framework

9.  Writing User-Level Cryptographic Applications and Providers

10.  Using the Smart Card Framework

Oracle Solaris Smart Card Framework Overview

Developing Smart Card Consumer Applications

SCF Session Interfaces

SCF Terminal Interfaces

SCF Card and Miscellaneous Interfaces

Developing an IFD Handler for Smart Card Terminals

Installation of Smart Card Terminals

A.  Sample C-Based GSS-API Programs

B.  GSS-API Reference

C.  Specifying an OID

D.  Source Code for SASL Example

E.  SASL Reference Tables

F.  Packaging and Signing Cryptographic Providers

Glossary

Index

Developing Smart Card Consumer Applications

The SCF API provides a set of interfaces for accessing smart cards. These interfaces provide communication to the cards in low-level application protocol data unit (APDU) form. These interfaces are provided in both C and Java. The interfaces work with all readers that are supported by the Solaris operating system and with any smart card that communicates with APDUs. The SCF API is based on the following components:

The SCF API provides functionality in the following areas:

The following sections provide information about the specific SCF interfaces.

SCF Session Interfaces

The following functions are used for SCF sessions.

SCF_Session_getSession(3SMARTCARD)

Establishes a session with a system's smart card framework. After a session has been opened, the session can be used with SCF_Session_getTerminal(3SMARTCARD) to access a smart card terminal.

SCF_Session_close(3SMARTCARD)

Releases the resources that were allocated when the session was opened. Also, closes any terminals or cards that are associated with that session.

SCF_Session_getInfo(3SMARTCARD)

Obtains information about a session.

SCF_Session_freeInfo(3SMARTCARD)

Deallocates storage that is returned from SCF_Session_getInfo(3SMARTCARD).

SCF_Session_getTerminal(3SMARTCARD)

Establishes a context with a specific smart card terminal in the session. Terminal objects are used for detecting card movement, that is, insertion or removal. Terminal objects are also used to create card objects for accessing a specific card.

SCF Terminal Interfaces

The following functions are used to access SCF terminals.

SCF_Terminal_close(3SMARTCARD)

Releases the resources that were allocated when the terminal was opened. The function also closes any cards that were associated with the terminal.

SCF_Terminal_getInfo(3SMARTCARD)

Obtains information about a terminal.

SCF_Terminal_freeInfo(3SMARTCARD)

Deallocates storage that has been returned from SCF_Terminal_getInfo(3SMARTCARD).

SCF_Terminal_waitForCardPresent(3SMARTCARD)

Blocks and waits until a card is present in the specified terminal.

SCF_Terminal_waitForCardAbsent(3SMARTCARD)

Blocks and waits until the card in the specified terminal is removed.

SCF_Terminal_addEventListener(3SMARTCARD)

Allows a program to receive callback notifications when events occur on a terminal. The concept is similar to a signal handler. When an event occurs, a service thread executes the provided callback function.

SCF_Terminal_updateEventListener(3SMARTCARD)

Updates the specified event listener that is associated with this terminal.

SCF_Terminal_removeEventListener(3SMARTCARD)

Removes the specified event listener from the listener list that is associated with this terminal.

SCF_Terminal_getCard(3SMARTCARD)

Establishes a context with a specific smart card in a terminal. Card objects can be used to send APDUs to the card with SCF_Card_exchangeAPDU(3SMARTCARD).

SCF Card and Miscellaneous Interfaces

The following functions are used to access smart cards and to get status.

SCF_Card_close(3SMARTCARD)

Releases resources, such as memory and threads, that were allocated when the card was opened. Also, releases the lock that was held by that card.

SCF_Card_getInfo(3SMARTCARD)

Obtains information about a card.

SCF_Card_freeInfo(3SMARTCARD)

Deallocates storage that has been returned from SCF_Card_getInfo(3SMARTCARD).

SCF_Card_lock(3SMARTCARD)

Obtains a lock on a specific card. This function allows an application to perform a multiple APDU transaction without interference from other smart card applications.

SCF_Card_unlock(3SMARTCARD)

Removes a lock from a specific card.

SCF_Card_exchangeAPDU(3SMARTCARD)

Sends a command APDU to a card and reads the card's response.

SCF_Card_waitForCardRemoved(3SMARTCARD)

Checks to see if a specific card has been removed. If another card or even the same card has since been reinserted, the function reports that the old card was removed.

SCF_Card_reset(3SMARTCARD)

Resets a specific card.

SCF_strerror(3SMARTCARD)

Gets a string that describes a status code.