Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 11 java.smartcardio.jmod - Smart Card IO Module
JDK 11 java.smartcardio.jmod is the JMOD file for JDK 11 Smartcardio module.
JDK 11 Smart Card IO module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.smartcardio.jmod.
JDK 11 Smart Card IO module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Smart Card IO module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.smartcardio.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/security/smartcardio/SunPCSC.java
/* * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.security.smartcardio; import java.security.*; import javax.smartcardio.*; import static sun.security.util.SecurityConstants.PROVIDER_VER; /** * Provider object for PC/SC. * * @since 1.6 * @author Andreas Sterbenz */ public final class SunPCSC extends Provider { private static final long serialVersionUID = 6168388284028876579L; private static final class ProviderService extends Provider.Service { ProviderService(Provider p, String type, String algo, String cn) { super(p, type, algo, cn, null, null); } @Override public Object newInstance(Object ctrParamObj) throws NoSuchAlgorithmException { String type = getType(); String algo = getAlgorithm(); try { if (type.equals("TerminalFactory") && algo.equals("PC/SC")) { return new SunPCSC.Factory(ctrParamObj); } } catch (Exception ex) { throw new NoSuchAlgorithmException("Error constructing " + type + " for " + algo + " using SunPCSC", ex); } throw new ProviderException("No impl for " + algo + " " + type); } } public SunPCSC() { super("SunPCSC", PROVIDER_VER, "Sun PC/SC provider"); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction<Void>() { public Void run() { putService(new ProviderService(p, "TerminalFactory", "PC/SC", "sun.security.smartcardio.SunPCSC$Factory")); return null; } }); } public static final class Factory extends TerminalFactorySpi { public Factory(Object obj) throws PCSCException { if (obj != null) { throw new IllegalArgumentException ("SunPCSC factory does not use parameters"); } // make sure PCSC is available and that we can obtain a context PCSC.checkAvailable(); PCSCTerminals.initContext(); } /** * Returns the available readers. * This must be a new object for each call. */ protected CardTerminals engineTerminals() { return new PCSCTerminals(); } } }
⏎ sun/security/smartcardio/SunPCSC.java
⇒ JDK 11 java.sql.jmod - SQL Module
2021-02-17, 3913👍, 1💬
Popular Posts:
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module. JDK 11 Base module compiled class fil...
BSON is a computer data interchange format used mainly as a data storage and network transfer format...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
commons-codec-1.11.jar is the JAR file for Apache Commons Codec 1.11, which provides implementations...
What Is xercesImpl-2.6.2.jar? xercesImpl-2.6.2.jar is the JAR file for Apache Xerces Java XML Parser...