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
⏎ javax/smartcardio/ResponseAPDU.java
/* * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.smartcardio; import java.util.Arrays; /** * A response APDU as defined in ISO/IEC 7816-4. It consists of a conditional * body and a two byte trailer. * This class does not attempt to verify that the APDU encodes a semantically * valid response. * * <p>Instances of this class are immutable. Where data is passed in or out * via byte arrays, defensive cloning is performed. * * @see CommandAPDU * @see CardChannel#transmit CardChannel.transmit * * @since 1.6 * @author Andreas Sterbenz * @author JSR 268 Expert Group */ public final class ResponseAPDU implements java.io.Serializable { private static final long serialVersionUID = 6962744978375594225L; /** @serial */ private byte[] apdu; /** * Constructs a ResponseAPDU from a byte array containing the complete * APDU contents (conditional body and trailed). * * <p>Note that the byte array is cloned to protect against subsequent * modification. * * @param apdu the complete response APDU * * @throws NullPointerException if apdu is null * @throws IllegalArgumentException if apdu.length is less than 2 */ public ResponseAPDU(byte[] apdu) { apdu = apdu.clone(); check(apdu); this.apdu = apdu; } private static void check(byte[] apdu) { if (apdu.length < 2) { throw new IllegalArgumentException("apdu must be at least 2 bytes long"); } } /** * Returns the number of data bytes in the response body (Nr) or 0 if this * APDU has no body. This call is equivalent to * <code>getData().length</code>. * * @return the number of data bytes in the response body or 0 if this APDU * has no body. */ public int getNr() { return apdu.length - 2; } /** * Returns a copy of the data bytes in the response body. If this APDU as * no body, this method returns a byte array with a length of zero. * * @return a copy of the data bytes in the response body or the empty * byte array if this APDU has no body. */ public byte[] getData() { byte[] data = new byte[apdu.length - 2]; System.arraycopy(apdu, 0, data, 0, data.length); return data; } /** * Returns the value of the status byte SW1 as a value between 0 and 255. * * @return the value of the status byte SW1 as a value between 0 and 255. */ public int getSW1() { return apdu[apdu.length - 2] & 0xff; } /** * Returns the value of the status byte SW2 as a value between 0 and 255. * * @return the value of the status byte SW2 as a value between 0 and 255. */ public int getSW2() { return apdu[apdu.length - 1] & 0xff; } /** * Returns the value of the status bytes SW1 and SW2 as a single * status word SW. * It is defined as * {@code (getSW1() << 8) | getSW2()} * * @return the value of the status word SW. */ public int getSW() { return (getSW1() << 8) | getSW2(); } /** * Returns a copy of the bytes in this APDU. * * @return a copy of the bytes in this APDU. */ public byte[] getBytes() { return apdu.clone(); } /** * Returns a string representation of this response APDU. * * @return a String representation of this response APDU. */ public String toString() { return "ResponseAPDU: " + apdu.length + " bytes, SW=" + Integer.toHexString(getSW()); } /** * Compares the specified object with this response APDU for equality. * Returns true if the given object is also a ResponseAPDU and its bytes are * identical to the bytes in this ResponseAPDU. * * @param obj the object to be compared for equality with this response APDU * @return true if the specified object is equal to this response APDU */ public boolean equals(Object obj) { if (this == obj) { return true; } if (obj instanceof ResponseAPDU == false) { return false; } ResponseAPDU other = (ResponseAPDU)obj; return Arrays.equals(this.apdu, other.apdu); } /** * Returns the hash code value for this response APDU. * * @return the hash code value for this response APDU. */ public int hashCode() { return Arrays.hashCode(apdu); } private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException { apdu = (byte[])in.readUnshared(); check(apdu); } }
⏎ javax/smartcardio/ResponseAPDU.java
⇒ JDK 11 java.sql.jmod - SQL Module
2021-02-17, 3925👍, 1💬
Popular Posts:
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
What Is in Xerces-J-bin.2.11.0.zip? Xerces-J-bin.2.11.0.zip file is the distribution package ZIP fil...
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...