Package org.kapott.hbci.smartcardio

Examples of org.kapott.hbci.smartcardio.RSACardService


            if (!terminal.waitForCardPresent(60 * 1000L))
              throw new HBCI_Exception("Keine Chipkarte in Kartenleser " + terminal.getName() + " gefunden");

            this.smartCard = terminal.connect("T=1");
           
            this.cardService = new RSACardService();
            HBCIUtils.log(" using: " + this.cardService.getClass().getName(),HBCIUtils.LOG_INFO);
            this.cardService.init(this.smartCard);
           
            // getCID
            byte[] cid = this.cardService.getCID();
View Full Code Here

TOP

Related Classes of org.kapott.hbci.smartcardio.RSACardService

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.