[Webfunds-commits] java/webfunds/x509/provider WebFundsX509.java
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Thu, 17 Aug 2000 20:19:14 -0400 (AST)
gelderen 00/08/17 20:19:14
Added: webfunds/x509/provider WebFundsX509.java
Log:
Initial version.
Revision Changes Path
1.1 java/webfunds/x509/provider/WebFundsX509.java
Index: WebFundsX509.java
===================================================================
/* $Id: WebFundsX509.java,v 1.1 2000/08/18 00:19:13 gelderen Exp $
*
* Copyright (C) 2000 The Cryptix Foundation Limited. All rights reserved.
*
* Use, modification, copying and distribution of this software is subject
* the terms and conditions of the Cryptix General Licence. You should have
* received a copy of the Cryptix General Licence along with this library;
* if not, you can download a copy from http://www.cryptix.org/ .
*/
package webfunds.x509.provider;
import java.security.Provider;
/**
* @version $Revision: 1.1 $
* @author Jeroen C. van Gelderen (gelderen@cryptix.org)
*/
public final class WebFundsX509 extends Provider {
// Static variables and constants
//...........................................................................
private static final String
NAME = "WebFundsX509",
INFO = "WebFunds X.509 Provider";
private static final double
VERSION = 1.0;
// Constructor
//...........................................................................
public WebFundsX509() {
super(NAME, VERSION, INFO);
put("CertificateFactory.X.509",
"webfunds.x509.cert.SimpleX509CertificateFactorySpi");
}
}