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 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/security/KeyPair.java
/* * @(#)KeyPair.java 1.7 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.security; import java.util.*; import java.io.*; /** * <p>This class is a simple holder for a key pair (a public key and a * private key). It does not enforce any security, and, when initialized, * should be treated like a PrivateKey. * * @see PublicKey * @see PrivateKey * * @version 1.7 01/12/10 * @author Benjamin Renaud */ public final class KeyPair { private PrivateKey privateKey; private PublicKey publicKey; /** * Constructs a key with the specified public key and private key. * * @param publicKey the public key. * * @param privateKey the private key. */ public KeyPair(PublicKey publicKey, PrivateKey privateKey) { this.publicKey = publicKey; this.privateKey = privateKey; } /** * Returns the public key from this key pair. * * @return the public key. */ public PublicKey getPublic() { return publicKey; } /** * Returns the private key from this key pair. * * @return the private key. */ public PrivateKey getPrivate() { return privateKey; } }
⏎ java/security/KeyPair.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 37990👍, 0💬
Popular Posts:
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
If you are running a Java application and receiving an java.lang.ClassNotFoundE xceptionerror, it is...
The Web Services Description Language for Java Toolkit (WSDL4J), Release 1.6.2, allows the creation,...
What Is fop.jar 0.95? I got it from the fop-0.95-bin.zip. fop.jar (0.95) is the JAR file for FOP 0.9...