background image

8

Cryptographic Smart Card Driver Development Guide 

See “Code sample: Enabling a CryptoToken object for RSA operations using a private key” on page 24 for more 
information.

Store the location of the private key file

Even though the private key file is stored on the smart card, the BlackBerry device needs to know that a private key 
file exists for a certificate. A class that implements the 

CryptoTokenPrivateKeyData

 interface can act as a 

pointer to a private key file on the smart card.

Enable signing of unprocessed data.

>

Perform one of the following steps:

To create a cryptographic smart card driver that is compatible with BlackBerry Device 
Software Version 4.2 or later, create a method that signs unprocessed data, for example:

public void signRSA(RSACryptoSystem cryptoSystem, 
CryptoTokenPrivateKeyData privateKeyData, byte[] input, int 
inputOffset,byte[] output, int outputOffset)

throws CryptoTokenException, CryptoUnsupportedOperationException

{

signDecryptHelper(cryptoSystem, privateKeyData, input, inputOffset, 
output, outputOffset, SIGN_DESC, SmartCardSession.SIGN_OPERATION);

}

To create a cryptographic smart card driver that is compatible with BlackBerry Device 
Software Version 4.1 and Version 4.2 or later, and to include the cryptographic smart card 
driver in two-factor authentication, create a method that signs unprocessed data, for example:

public void signRSASmartCardImpl (CryptoSystem cryptoSystem, 
CryptoTokenPrivateKeyData privateKeyData, byte[] input,int 
inputOffset, byte[] output, int outputOffset)

Task

Steps

Store the location of the private key file on 
the smart card.

>

Implement the 

CryptoTokenPrivateKeyData 

interface.

Associate the implementing class object 
with the smart card that contains the 
private key file.

1.

Create an instance variable for storing the smart card ID.

private SmartCardID _id;

2. Create an instance variable for storing the location of the private key file on the smart card.

private byte _file;

3. Create a constructor that associates an object from the class that implements a 

PrivateKeyData

 interface with the smart card.

public MyCryptoTokenData(SmartCardID id, byte file)
{

_id = id;
_file = file;

}

Retrieve the ID of the smart card.

>

Create a method that returns the 

SmartCardID

 instance variable.

public SmartCardID getSmartCardID()
{

return _id;

}

Task

Steps

Summary of Contents for JAVA DEVELOPMENT ENVIRONMENT - - CRYPTOGRAPHIC SMART CARD DRIVER - DEVELOPMENT GUIDE

Page 1: ...BlackBerry Java Development Environment Version 4 6 0 Cryptographic Smart Card Driver Development Guide...

Page 2: ...that is contained in this documentation however RIM makes no commitment to provide any such changes updates enhancements or other additions to this documentation to you in a timely manner or at all T...

Page 3: ...LITY ARISING FROM OR RELATED TO THE DOCUMENTATION Prior to subscribing for installing or using any Third Party Products and Services it is your responsibility to ensure that your airtime service provi...

Page 4: ......

Page 5: ...key file 8 2 Testing a cryptographic smart card driver 11 Set up the BlackBerry Device Simulator to test a cryptographic smart card driver 11 Set up a BlackBerry device to test a cryptographic smart c...

Page 6: ......

Page 7: ...ormation on S MIME The smart card API information included with BlackBerry JDE Version 4 2 or later contains some deprecated elements The deprecated elements provide backward compatibility for a crypt...

Page 8: ...he Application tab in the Project type field type Library 4 Select the Auto run on startup check box 5 In the Startup Tier field select the 7 Last 3rd party apps only option 6 Click OK Create a libMai...

Page 9: ...Berry Device Software Version 4 2 or later implement CryptoSmartCardSession getKeyStoreDataArrayImpl as follows RSACryptoToken token new MyRSACryptoToken RSACryptoSystem cryptoSystem new RSACryptoSyst...

Page 10: ...rsistable To create a cryptographic smart card driver that is compatible with BlackBerry Device Software Version 4 1 and Version 4 2 or later and to include the cryptographic smart card driver in two...

Page 11: ...PrivateKeyData privateKeyData Enable decryption of unprocessed data Perform one of the following steps To create a cryptographic smart card driver that is compatible with BlackBerry Device Software Ve...

Page 12: ...ESC SmartCardSession SIGN_OPERATION To create a cryptographic smart card driver that is compatible with BlackBerry Device Software Version 4 1 and Version 4 2 or later and to include the cryptographic...

Page 13: ...a private key file on the smart card on page 28 for more information Retrieve the location of the private key file on the smart card Create a method that returns the location of the private key file...

Page 14: ...10 Cryptographic Smart Card Driver Development Guide...

Page 15: ...Simulator to test a cryptographic smart card driver Set up a BlackBerry device to test a cryptographic smart card driver Test the cryptographic smart card driver Note You do not require the Casira Bl...

Page 16: ...evice Task Steps Make sure the cryptographic smart card driver is installed on a BlackBerry device 1 On the BlackBerry device click Options Security Options Smart Card 2 Ensure the cryptographic smart...

Page 17: ...13 2 Testing a cryptographic smart card driver...

Page 18: ...14 Cryptographic Smart Card Driver Development Guide...

Page 19: ...byte 0x71 byte 0x8e byte 0x64 byte 0x86 byte 0xd6 byte 0x01 byte 0x00 byte 0x81 byte 0x90 byte 0x00 private final static AnswerToReset _myATR new AnswerToReset MY_ATR private static final String LABEL...

Page 20: ...this smart card object to communicate with a physical smart card that has the given AnswerToReset The system invokes this method to ascertain which smart card implementation it should use to communica...

Page 21: ...The driver should not block the event thread for long periods of time param context Reserved for future use protected void displaySettingsImpl Object context Dialog alert DISPLAY_SETTINGS Retrieve the...

Page 22: ...o not hold open sessions when not using them they should be short lived As a security precaution only one open session is allowed to exist per SmartCardReader subsequent openSession requests will bloc...

Page 23: ...wed login attempts The method returns Integer MAX_VALUE if an infinite number of attempts are allowed protected int getMaxLoginAttemptsImpl throws SmartCardException return 5 Retrieve the remaining nu...

Page 24: ...A1Digest digest update uniqueCardData long idLong byteArrayToLong Arrays copy digest getDigest 0 8 Using friendly display name return new SmartCardID idLong ID_STRING getSmartCard Converts code array...

Page 25: ...00 maxBytes ResponseAPDU response new ResponseAPDU sendAPDU command response Check for response codes specific to your smart card if response checkStatusWords byte 0x90 byte 0x00 The appropriate respo...

Page 26: ...ata null ID_CERT privateKey null KeyStore SECURITY_LEVEL_HIGH certificate null null 0 stepProgressDialog 1 privateKey new RSAPrivateKey cryptoSystem new MyCryptoTokenData smartCardID SIGNING_PKI keySt...

Page 27: ...lication Protocol Data Unit ResponseAPDU response new ResponseAPDU Construct the command and set its information Create a CommandAPDU which your smart card will understand CommandAPDU signAPDU new Com...

Page 28: ...s an implmentation of an RSA cryptographic token The RIM Crypto API will use this object to perform a private key RSA operation This object should delegate the operation to the smart card final class...

Page 29: ...oSystem cryptoSystem CryptoTokenPrivateKeyData privateKeyData throws CryptoTokenException return privateKeyData instanceof MyCryptoTokenData Perform RSA decryption of unprocessed data p Notes To revea...

Page 30: ...sed If the RSA Crypto token requires the padding to be removed before signing this method will need to detect and remove the type of padding that is currently used The RSA Crypto token should only re...

Page 31: ...ardFactory getSmartCardSession smartCardID if smartCardSession instanceof MyCryptoSmartCardSession MyCryptoSmartCardSession mySmartCardSession MyCryptoSmartCardSession smartCardSession We must provide...

Page 32: ...api smartcard import net rim device api util This class stores the location of the private key file on the smart card final class MyCryptoTokenData implements CryptoTokenPrivateKeyData Persistable Sma...

Page 33: ...ile containing the private key file return ID of the smart card public SmartCardID getSmartCardID return _id Retrieve the location of the private key file on the smart card return Location of the priv...

Page 34: ...30 Cryptographic Smart Card Driver Development Guide...

Page 35: ......

Page 36: ...2007 Research In Motion Limited Published in Canada...

Reviews: