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 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/Provider.java
/* * @(#)Provider.java 1.22 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.io.*; import java.util.*; /** * This class represents a "provider" for the * Java Security API. A provider implements some or all parts of * Java Security, including:<ul> * * <li>Algorithms (such as DSA, RSA, MD5 or SHA-1). * * <li>Key generation and management facilities (such as for * algorithm-specific keys). * * </ul> * * <p>Each provider has a name and a version number, and is configured * in each runtime it is installed in. * * <p>There is a default provider that comes standard with the JDK. It is * called the SUN Provider. * * See <a href = * "../guide/security/CryptoSpec.html#Provider">The Provider Class</a> * in the "Java Cryptography Architecture API Specification & Reference" * for information about how providers work and how to install them. * * @version 1.19, 01/30/97 * @author Benjamin Renaud */ public abstract class Provider extends Properties { private String name; private String info; private double version; /** * Constructs a provider with the specified name, version number, * and information. * * @param name the provider name. * * @param version the provider version number. * * @param info a description of the provider and its services. */ protected Provider(String name, double version, String info) { this.name = name; this.version = version; this.info = info; } /** * Constructs a provider with the specified name. Assigns it * version 1.0. * * @param name the provider name. */ Provider(String name) { this(name, 1.0, "no information available"); } /** * Returns the name of this provider. * * @return the name of this provider. */ public String getName() { return name; } /** * Returns the version number for this provider. * * @return the version number for this provider. */ public double getVersion() { return version; } /** * Returns a human-readable description of the provider and its * services. This may return an HTML page, with relevant links. * * @return a description of the provider and its services. */ public String getInfo() { return info; } static Provider loadProvider(String name) { try { Class cl = Class.forName(name); Object instance = cl.newInstance(); if (instance instanceof Provider) { return (Provider)instance; } } catch (Exception e) { debug("error loading provider " + name, e); } return null; } /** * Returns a string with the name and the version number * of this provider. * * @return the string with the name and the version number * for this provider. */ public String toString() { return name + " version " + version; } private static void debug(String msg) { Security.debug(msg); } private static void debug(String msg, Throwable t) { Security.debug(msg, t); } }
⏎ java/security/Provider.java
Or download all of them as a single archive file:
File name: jdk-1.1.8-src.zip File size: 1574187 bytes Release date: 2018-11-16 Download
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 175044👍, 0💬
Popular Posts:
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module. JDK 17 Desktop module compiled ...
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of a...
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
JDK 11 jdk.httpserver.jmod is the JMOD file for JDK 11 HTTP Server module. JDK 11 HTTP Server module...