1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
/* Gnu.java --- Gnu provider main class
Copyright (C) 1999, 2002, 2003, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package gnu.java.security.provider;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.security.Provider;
public final class Gnu extends Provider
{
public Gnu()
{
super("GNU", 1.0, "GNU provider v1.0 implementing SHA-1, MD5, DSA, RSA, X.509 Certificates and CRLs, PKIX certificate path validators, Collection cert stores, Diffie-Hellman key agreement and key pair generator");
AccessController.doPrivileged (new PrivilegedAction()
{
public Object run()
{
// Note that all implementation class names are referenced by using
// Class.getName(). That way when we staticly link the Gnu provider
// we automatically get all the implementation classes.
// Signature
put("Signature.SHA160withDSS",
gnu.java.security.jce.sig.SHA160withDSS.class.getName());
put("Alg.Alias.Signature.SHA1withDSA", "SHA160withDSS");
put("Alg.Alias.Signature.DSS", "SHA160withDSS");
put("Alg.Alias.Signature.DSA", "SHA160withDSS");
put("Alg.Alias.Signature.SHAwithDSA", "SHA160withDSS");
put("Alg.Alias.Signature.DSAwithSHA", "SHA160withDSS");
put("Alg.Alias.Signature.DSAwithSHA1", "SHA160withDSS");
put("Alg.Alias.Signature.SHA/DSA", "SHA160withDSS");
put("Alg.Alias.Signature.SHA-1/DSA", "SHA160withDSS");
put("Alg.Alias.Signature.SHA1/DSA", "SHA160withDSS");
put("Alg.Alias.Signature.OID.1.2.840.10040.4.3", "SHA160withDSS");
put("Alg.Alias.Signature.1.2.840.10040.4.3", "SHA160withDSS");
put("Alg.Alias.Signature.1.3.14.3.2.13", "SHA160withDSS");
put("Alg.Alias.Signature.1.3.14.3.2.27", "SHA160withDSS");
put("Signature.MD2withRSA",
gnu.java.security.jce.sig.MD2withRSA.class.getName());
put("Signature.MD2withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.md2WithRSAEncryption", "MD2withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.2", "MD2withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.2", "MD2withRSA");
put("Signature.MD5withRSA",
gnu.java.security.jce.sig.MD5withRSA.class.getName());
put("Signature.MD5withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.md5WithRSAEncryption", "MD5withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.4", "MD5withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.4", "MD5withRSA");
put("Alg.Alias.Signature.RSA", "MD5withRSA");
put("Signature.SHA160withRSA",
gnu.java.security.jce.sig.SHA160withRSA.class.getName());
put("Signature.SHA160withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.sha-1WithRSAEncryption", "SHA160withRSA");
put("Alg.Alias.Signature.sha-160WithRSAEncryption", "SHA160withRSA");
put("Alg.Alias.Signature.sha1WithRSAEncryption", "SHA160withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.5", "SHA160withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.5", "SHA160withRSA");
put("Alg.Alias.Signature.SHA1withRSA", "SHA160withRSA");
put("Signature.SHA256withRSA",
gnu.java.security.jce.sig.SHA256withRSA.class.getName());
put("Signature.SHA160withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.sha256WithRSAEncryption", "SHA256withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.11", "SHA256withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.11", "SHA256withRSA");
put("Signature.SHA384withRSA",
gnu.java.security.jce.sig.SHA384withRSA.class.getName());
put("Signature.SHA160withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.sha384WithRSAEncryption", "SHA384withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.12", "SHA384withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.12", "SHA384withRSA");
put("Signature.SHA512withRSA",
gnu.java.security.jce.sig.SHA512withRSA.class.getName());
put("Signature.SHA160withRSA ImplementedIn", "Software");
put("Alg.Alias.Signature.sha512WithRSAEncryption", "SHA512withRSA");
put("Alg.Alias.Signature.OID.1.2.840.113549.1.1.13", "SHA512withRSA");
put("Alg.Alias.Signature.1.2.840.113549.1.1.13", "SHA512withRSA");
put("Signature.DSS/RAW",
gnu.java.security.jce.sig.DSSRawSignatureSpi.class.getName());
put("Signature.DSS/RAW KeySize", "1024");
put("Signature.DSS/RAW ImplementedIn", "Software");
put("Signature.RSA-PSS/RAW",
gnu.java.security.jce.sig.RSAPSSRawSignatureSpi.class.getName());
put("Signature.RSA-PSS/RAW KeySize", "1024");
put("Signature.RSA-PSS/RAW ImplementedIn", "Software");
// Key Pair Generator
put("KeyPairGenerator.DSS",
gnu.java.security.jce.sig.DSSKeyPairGeneratorSpi.class.getName());
put("KeyPairGenerator.DSS KeySize", "1024");
put("KeyPairGenerator.DSS ImplementedIn", "Software");
put("Alg.Alias.KeyPairGenerator.DSA", "DSS");
put("Alg.Alias.KeyPairGenerator.OID.1.2.840.10040.4.1", "DSS");
put("Alg.Alias.KeyPairGenerator.1.2.840.10040.4.1", "DSS");
put("Alg.Alias.KeyPairGenerator.1.3.14.3.2.12", "DSS");
put("KeyPairGenerator.RSA",
gnu.java.security.jce.sig.RSAKeyPairGeneratorSpi.class.getName());
put("KeyPairGenerator.RSA KeySize", "1024");
put("KeyPairGenerator.RSA ImplementedIn", "Software");
// Key Factory
put("KeyFactory.DSS",
gnu.java.security.jce.sig.DSSKeyFactory.class.getName());
put("Alg.Alias.KeyFactory.DSA", "DSS");
put("Alg.Alias.KeyFactory.OID.1.2.840.10040.4.1", "DSS");
put("Alg.Alias.KeyFactory.1.2.840.10040.4.1", "DSS");
put("Alg.Alias.KeyFactory.1.3.14.3.2.12", "DSS");
put("KeyFactory.RSA",
gnu.java.security.jce.sig.RSAKeyFactory.class.getName());
put("KeyFactory.Encoded",
gnu.java.security.jce.sig.EncodedKeyFactory.class.getName());
put("KeyFactory.Encoded ImplementedIn", "Software");
put("Alg.Alias.KeyFactory.X.509", "Encoded");
put("Alg.Alias.KeyFactory.X509", "Encoded");
put("Alg.Alias.KeyFactory.PKCS#8", "Encoded");
put("Alg.Alias.KeyFactory.PKCS8", "Encoded");
put("MessageDigest.HAVAL", gnu.java.security.jce.hash.HavalSpi.class.getName());
put("MessageDigest.HAVAL ImplementedIn", "Software");
put("MessageDigest.MD2", gnu.java.security.jce.hash.MD2Spi.class.getName());
put("MessageDigest.MD2 ImplementedIn", "Software");
put("MessageDigest.MD4", gnu.java.security.jce.hash.MD4Spi.class.getName());
put("MessageDigest.MD4 ImplementedIn", "Software");
put("MessageDigest.MD5", gnu.java.security.jce.hash.MD5Spi.class.getName());
put("MessageDigest.MD5 ImplementedIn", "Software");
put("MessageDigest.RIPEMD128", gnu.java.security.jce.hash.RipeMD128Spi.class.getName());
put("MessageDigest.RIPEMD128 ImplementedIn", "Software");
put("MessageDigest.RIPEMD160", gnu.java.security.jce.hash.RipeMD160Spi.class.getName());
put("MessageDigest.RIPEMD160 ImplementedIn", "Software");
put("MessageDigest.SHA-160", gnu.java.security.jce.hash.Sha160Spi.class.getName());
put("MessageDigest.SHA-160 ImplementedIn", "Software");
put("MessageDigest.SHA-256", gnu.java.security.jce.hash.Sha256Spi.class.getName());
put("MessageDigest.SHA-256 ImplementedIn", "Software");
put("MessageDigest.SHA-384", gnu.java.security.jce.hash.Sha384Spi.class.getName());
put("MessageDigest.SHA-384 ImplementedIn", "Software");
put("MessageDigest.SHA-512", gnu.java.security.jce.hash.Sha512Spi.class.getName());
put("MessageDigest.SHA-512 ImplementedIn", "Software");
put("MessageDigest.TIGER", gnu.java.security.jce.hash.TigerSpi.class.getName());
put("MessageDigest.TIGER ImplementedIn", "Software");
put("MessageDigest.WHIRLPOOL", gnu.java.security.jce.hash.WhirlpoolSpi.class.getName());
put("MessageDigest.WHIRLPOOL ImplementedIn", "Software");
put("Alg.Alias.MessageDigest.SHS", "SHA-160");
put("Alg.Alias.MessageDigest.SHA", "SHA-160");
put("Alg.Alias.MessageDigest.SHA1", "SHA-160");
put("Alg.Alias.MessageDigest.SHA-1", "SHA-160");
put("Alg.Alias.MessageDigest.SHA2-256", "SHA-256");
put("Alg.Alias.MessageDigest.SHA2-384", "SHA-384");
put("Alg.Alias.MessageDigest.SHA2-512", "SHA-512");
put("Alg.Alias.MessageDigest.SHA256", "SHA-256");
put("Alg.Alias.MessageDigest.SHA384", "SHA-384");
put("Alg.Alias.MessageDigest.SHA512", "SHA-512");
put("Alg.Alias.MessageDigest.RIPEMD-160", "RIPEMD160");
put("Alg.Alias.MessageDigest.RIPEMD-128", "RIPEMD128");
put("Alg.Alias.MessageDigest.OID.1.2.840.11359.2.2", "MD2");
put("Alg.Alias.MessageDigest.1.2.840.11359.2.2", "MD2");
put("Alg.Alias.MessageDigest.OID.1.2.840.11359.2.5", "MD5");
put("Alg.Alias.MessageDigest.1.2.840.11359.2.5", "MD5");
put("Alg.Alias.MessageDigest.OID.1.3.14.3.2.26", "SHA1");
put("Alg.Alias.MessageDigest.1.3.14.3.2.26", "SHA1");
// Algorithm Parameters
put("AlgorithmParameters.DSS",
gnu.java.security.jce.sig.DSSParameters.class.getName());
put("Alg.Alias.AlgorithmParameters.DSA", "DSS");
put("Alg.Alias.AlgorithmParameters.SHAwithDSA", "DSS");
put("Alg.Alias.AlgorithmParameters.OID.1.2.840.10040.4.3", "DSS");
put("Alg.Alias.AlgorithmParameters.1.2.840.10040.4.3", "DSS");
// Algorithm Parameter Generator
put("AlgorithmParameterGenerator.DSA",
gnu.java.security.jce.sig.DSSParametersGenerator.class.getName());
put("Alg.Alias.AlgorithmParameterGenerator.DSA", "DSS");
// SecureRandom
put("SecureRandom.SHA1PRNG",
gnu.java.security.jce.prng.Sha160RandomSpi.class.getName());
put("SecureRandom.MD2PRNG", gnu.java.security.jce.prng.MD2RandomSpi.class.getName());
put("SecureRandom.MD2PRNG ImplementedIn", "Software");
put("SecureRandom.MD4PRNG", gnu.java.security.jce.prng.MD4RandomSpi.class.getName());
put("SecureRandom.MD4PRNG ImplementedIn", "Software");
put("SecureRandom.MD5PRNG", gnu.java.security.jce.prng.MD5RandomSpi.class.getName());
put("SecureRandom.MD5PRNG ImplementedIn", "Software");
put("SecureRandom.RIPEMD128PRNG", gnu.java.security.jce.prng.RipeMD128RandomSpi.class.getName());
put("SecureRandom.RIPEMD128PRNG ImplementedIn", "Software");
put("SecureRandom.RIPEMD160PRNG", gnu.java.security.jce.prng.RipeMD160RandomSpi.class.getName());
put("SecureRandom.RIPEMD160PRNG ImplementedIn", "Software");
put("SecureRandom.SHA-160PRNG", gnu.java.security.jce.prng.Sha160RandomSpi.class.getName());
put("SecureRandom.SHA-160PRNG ImplementedIn", "Software");
put("SecureRandom.SHA-256PRNG", gnu.java.security.jce.prng.Sha256RandomSpi.class.getName());
put("SecureRandom.SHA-256PRNG ImplementedIn", "Software");
put("SecureRandom.SHA-384PRNG", gnu.java.security.jce.prng.Sha384RandomSpi.class.getName());
put("SecureRandom.SHA-384PRNG ImplementedIn", "Software");
put("SecureRandom.SHA-512PRNG", gnu.java.security.jce.prng.Sha512RandomSpi.class.getName());
put("SecureRandom.SHA-512PRNG ImplementedIn", "Software");
put("SecureRandom.TIGERPRNG", gnu.java.security.jce.prng.TigerRandomSpi.class.getName());
put("SecureRandom.TIGERPRNG ImplementedIn", "Software");
put("SecureRandom.HAVALPRNG", gnu.java.security.jce.prng.HavalRandomSpi.class.getName());
put("SecureRandom.HAVALPRNG ImplementedIn", "Software");
put("SecureRandom.WHIRLPOOLPRNG", gnu.java.security.jce.prng.WhirlpoolRandomSpi.class.getName());
put("SecureRandom.WHIRLPOOLPRNG ImplementedIn", "Software");
put("Alg.Alias.SecureRandom.SHA-1PRNG", "SHA-160PRNG");
put("Alg.Alias.SecureRandom.SHA1PRNG", "SHA-160PRNG");
put("Alg.Alias.SecureRandom.SHAPRNG", "SHA-160PRNG");
put("Alg.Alias.SecureRandom.SHA-256PRNG", "SHA-256PRNG");
put("Alg.Alias.SecureRandom.SHA-2-1PRNG", "SHA-256PRNG");
put("Alg.Alias.SecureRandom.SHA-384PRNG", "SHA-384PRNG");
put("Alg.Alias.SecureRandom.SHA-2-2PRNG", "SHA-384PRNG");
put("Alg.Alias.SecureRandom.SHA-512PRNG", "SHA-512PRNG");
put("Alg.Alias.SecureRandom.SHA-2-3PRNG", "SHA-512PRNG");
// CertificateFactory
put("CertificateFactory.X509", X509CertificateFactory.class.getName());
put("CertificateFactory.X509 ImplementedIn", "Software");
put("Alg.Alias.CertificateFactory.X.509", "X509");
// CertPathValidator
put("CertPathValidator.PKIX", PKIXCertPathValidatorImpl.class.getName());
put("CertPathValidator.PKIX ImplementedIn", "Software");
// CertStore
put("CertStore.Collection", CollectionCertStoreImpl.class.getName());
return null;
}
});
}
}
|