Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.crypto.mscapi.jmod - Crypto MSCAPI Module
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module.
JDK 11 Crypto MSCAPI module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.crypto.mscapi.jmod.
JDK 11 Crypto MSCAPI module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Crypto MSCAPI module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.crypto.mscapi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/security/mscapi/RSAPublicKey.java
/* * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.security.mscapi; import java.math.BigInteger; import java.security.KeyException; import java.security.KeyRep; import java.security.ProviderException; import sun.security.rsa.RSAUtil.KeyType; import sun.security.rsa.RSAPublicKeyImpl; /** * The handle for an RSA public key using the Microsoft Crypto API. * * @since 1.6 */ class RSAPublicKey extends Key implements java.security.interfaces.RSAPublicKey { private static final long serialVersionUID = -2289561342425825391L; private byte[] publicKeyBlob = null; private byte[] encoding = null; private BigInteger modulus = null; private BigInteger exponent = null; /** * Construct an RSAPublicKey object. */ RSAPublicKey(long hCryptProv, long hCryptKey, int keyLength) { super(new NativeHandles(hCryptProv, hCryptKey), keyLength); } /** * Construct an RSAPublicKey object. */ RSAPublicKey(NativeHandles handles, int keyLength) { super(handles, keyLength); } /** * Returns the standard algorithm name for this key. For * example, "RSA" would indicate that this key is a RSA key. * See Appendix A in the <a href= * "../../../guide/security/CryptoSpec.html#AppA"> * Java Cryptography Architecture API Specification & Reference </a> * for information about standard algorithm names. * * @return the name of the algorithm associated with this key. */ public String getAlgorithm() { return "RSA"; } /** * Returns a printable description of the key. */ public String toString() { StringBuffer sb = new StringBuffer(); sb.append("RSAPublicKey [size=").append(keyLength) .append(" bits, type=").append(getKeyType(handles.hCryptKey)) .append(", container=").append(getContainerName(handles.hCryptProv)) .append("]\n modulus: ").append(getModulus()) .append("\n public exponent: ").append(getPublicExponent()); return sb.toString(); } /** * Returns the public exponent. */ public BigInteger getPublicExponent() { if (exponent == null) { try { publicKeyBlob = getPublicKeyBlob(handles.hCryptKey); exponent = new BigInteger(1, getExponent(publicKeyBlob)); } catch (KeyException e) { throw new ProviderException(e); } } return exponent; } /** * Returns the modulus. */ public BigInteger getModulus() { if (modulus == null) { try { publicKeyBlob = getPublicKeyBlob(handles.hCryptKey); modulus = new BigInteger(1, getModulus(publicKeyBlob)); } catch (KeyException e) { throw new ProviderException(e); } } return modulus; } /** * Returns the name of the primary encoding format of this key, * or null if this key does not support encoding. * The primary encoding format is * named in terms of the appropriate ASN.1 data format, if an * ASN.1 specification for this key exists. * For example, the name of the ASN.1 data format for public * keys is <I>SubjectPublicKeyInfo</I>, as * defined by the X.509 standard; in this case, the returned format is * <code>"X.509"</code>. Similarly, * the name of the ASN.1 data format for private keys is * <I>PrivateKeyInfo</I>, * as defined by the PKCS #8 standard; in this case, the returned format is * <code>"PKCS#8"</code>. * * @return the primary encoding format of the key. */ public String getFormat() { return "X.509"; } /** * Returns the key in its primary encoding format, or null * if this key does not support encoding. * * @return the encoded key, or null if the key does not support * encoding. */ public byte[] getEncoded() { if (encoding == null) { try { encoding = RSAPublicKeyImpl.newKey(KeyType.RSA, null, getModulus(), getPublicExponent()).getEncoded(); } catch (KeyException e) { // ignore } } return encoding; } protected Object writeReplace() throws java.io.ObjectStreamException { return new KeyRep(KeyRep.Type.PUBLIC, getAlgorithm(), getFormat(), getEncoded()); } /* * Returns the Microsoft CryptoAPI representation of the key. */ private native byte[] getPublicKeyBlob(long hCryptKey) throws KeyException; /* * Returns the key's public exponent (in big-endian 2's complement format). */ private native byte[] getExponent(byte[] keyBlob) throws KeyException; /* * Returns the key's modulus (in big-endian 2's complement format). */ private native byte[] getModulus(byte[] keyBlob) throws KeyException; }
⏎ sun/security/mscapi/RSAPublicKey.java
Or download all of them as a single archive file:
File name: jdk.crypto.mscapi-11.0.1-src.zip File size: 25365 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.dynalink.jmod - Dynamic Linking Module
2020-08-02, 15514👍, 1💬
Popular Posts:
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...
commons-net-1.4.1.jar is the JAR file for Apache Commons Net 1.4.1, which implements the client side...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
JDK 11 java.rmi.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) module. JDK 11 RMI m...