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 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/security/spec/RSAKeyGenParameterSpec.java
/* * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.security.spec; import java.math.BigInteger; import java.security.spec.AlgorithmParameterSpec; /** * This class specifies the set of parameters used to generate an RSA * key pair. * * @author Jan Luehe * * @see java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec) * * @since 1.3 */ public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec { private int keysize; private BigInteger publicExponent; private AlgorithmParameterSpec keyParams; /** * The public-exponent value F0 = 3. */ public static final BigInteger F0 = BigInteger.valueOf(3); /** * The public exponent-value F4 = 65537. */ public static final BigInteger F4 = BigInteger.valueOf(65537); /** * Constructs a new {@code RSAKeyGenParameterSpec} object from the * given keysize, public-exponent value, and null key parameters. * * @param keysize the modulus size (specified in number of bits) * @param publicExponent the public exponent */ public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { this(keysize, publicExponent, null); } /** * Constructs a new {@code RSAKeyGenParameterSpec} object from the * given keysize, public-exponent value, and key parameters. * * @param keysize the modulus size (specified in number of bits) * @param publicExponent the public exponent * @param keyParams the key parameters, may be null * @since 11 */ public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, AlgorithmParameterSpec keyParams) { this.keysize = keysize; this.publicExponent = publicExponent; this.keyParams = keyParams; } /** * Returns the keysize. * * @return the keysize. */ public int getKeysize() { return keysize; } /** * Returns the public-exponent value. * * @return the public-exponent value. */ public BigInteger getPublicExponent() { return publicExponent; } /** * Returns the parameters to be associated with key. * * @return the associated parameters, may be null if * not present * @since 11 */ public AlgorithmParameterSpec getKeyParams() { return keyParams; } }
⏎ java/security/spec/RSAKeyGenParameterSpec.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 270192👍, 0💬
Popular Posts:
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
What Is commons-codec-1.4.jar? commons-codec-1.4.jar is the JAR file for Apache Commons Codec 1.4, w...