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/EllipticCurve.java
/* * Copyright (c) 2003, 2013, 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.util.Arrays; /** * This immutable class holds the necessary values needed to represent * an elliptic curve. * * @see ECField * @see ECFieldFp * @see ECFieldF2m * * @author Valerie Peng * * @since 1.5 */ public class EllipticCurve { private final ECField field; private final BigInteger a; private final BigInteger b; private final byte[] seed; // Check coefficient c is a valid element in ECField field. private static void checkValidity(ECField field, BigInteger c, String cName) { // can only perform check if field is ECFieldFp or ECFieldF2m. if (field instanceof ECFieldFp) { BigInteger p = ((ECFieldFp)field).getP(); if (p.compareTo(c) != 1) { throw new IllegalArgumentException(cName + " is too large"); } else if (c.signum() < 0) { throw new IllegalArgumentException(cName + " is negative"); } } else if (field instanceof ECFieldF2m) { int m = ((ECFieldF2m)field).getM(); if (c.bitLength() > m) { throw new IllegalArgumentException(cName + " is too large"); } } } /** * Creates an elliptic curve with the specified elliptic field * {@code field} and the coefficients {@code a} and * {@code b}. * @param field the finite field that this elliptic curve is over. * @param a the first coefficient of this elliptic curve. * @param b the second coefficient of this elliptic curve. * @exception NullPointerException if {@code field}, * {@code a}, or {@code b} is null. * @exception IllegalArgumentException if {@code a} * or {@code b} is not null and not in {@code field}. */ public EllipticCurve(ECField field, BigInteger a, BigInteger b) { this(field, a, b, null); } /** * Creates an elliptic curve with the specified elliptic field * {@code field}, the coefficients {@code a} and * {@code b}, and the {@code seed} used for curve generation. * @param field the finite field that this elliptic curve is over. * @param a the first coefficient of this elliptic curve. * @param b the second coefficient of this elliptic curve. * @param seed the bytes used during curve generation for later * validation. Contents of this array are copied to protect against * subsequent modification. * @exception NullPointerException if {@code field}, * {@code a}, or {@code b} is null. * @exception IllegalArgumentException if {@code a} * or {@code b} is not null and not in {@code field}. */ public EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed) { if (field == null) { throw new NullPointerException("field is null"); } if (a == null) { throw new NullPointerException("first coefficient is null"); } if (b == null) { throw new NullPointerException("second coefficient is null"); } checkValidity(field, a, "first coefficient"); checkValidity(field, b, "second coefficient"); this.field = field; this.a = a; this.b = b; if (seed != null) { this.seed = seed.clone(); } else { this.seed = null; } } /** * Returns the finite field {@code field} that this * elliptic curve is over. * @return the field {@code field} that this curve * is over. */ public ECField getField() { return field; } /** * Returns the first coefficient {@code a} of the * elliptic curve. * @return the first coefficient {@code a}. */ public BigInteger getA() { return a; } /** * Returns the second coefficient {@code b} of the * elliptic curve. * @return the second coefficient {@code b}. */ public BigInteger getB() { return b; } /** * Returns the seeding bytes {@code seed} used * during curve generation. May be null if not specified. * @return the seeding bytes {@code seed}. A new * array is returned each time this method is called. */ public byte[] getSeed() { if (seed == null) return null; else return seed.clone(); } /** * Compares this elliptic curve for equality with the * specified object. * @param obj the object to be compared. * @return true if {@code obj} is an instance of * EllipticCurve and the field, A, and B match, false otherwise. */ public boolean equals(Object obj) { if (this == obj) return true; if (obj instanceof EllipticCurve) { EllipticCurve curve = (EllipticCurve) obj; if ((field.equals(curve.field)) && (a.equals(curve.a)) && (b.equals(curve.b))) { return true; } } return false; } /** * Returns a hash code value for this elliptic curve. * @return a hash code value computed from the hash codes of the field, A, * and B, as follows: * <pre>{@code * (field.hashCode() << 6) + (a.hashCode() << 4) + (b.hashCode() << 2) * }</pre> */ public int hashCode() { return (field.hashCode() << 6 + (a.hashCode() << 4) + (b.hashCode() << 2)); } }
⏎ java/security/spec/EllipticCurve.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, 246067👍, 0💬
Popular Posts:
Old version of xml-apis.jar. JAR File Size and Download Location: File name: xmlParserAPIs.jar File ...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
How to download and install javamail-1_2.zip? The JavaMail API is a set of abstract APIs that model ...