Package net.rim.device.api.smartcard

Examples of net.rim.device.api.smartcard.SmartCardLockedException


        // TODO: Check for response codes specific to your smart card.
        if (response.checkStatusWords((byte) 0x90, (byte) 0x00)) {
            return true;
        } else if (response.checkStatusWords((byte) 0x64, (byte) 0xF8)) {
            throw new SmartCardLockedException();
        } else {
            // Authentication failed.
            return false;
        }
    }
View Full Code Here

TOP

Related Classes of net.rim.device.api.smartcard.SmartCardLockedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.