rsakeyfactory.java

来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 266 行

JAVA
266
字号
/* RSAKeyFactory.java -- RSA key-factory JCE Adapter   Copyright (C) 2006 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.java.security.jce.sig;import gnu.java.security.Registry;import gnu.java.security.key.rsa.GnuRSAPrivateKey;import gnu.java.security.key.rsa.GnuRSAPublicKey;import gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec;import gnu.java.security.key.rsa.RSAKeyPairX509Codec;import java.math.BigInteger;import java.security.InvalidKeyException;import java.security.Key;import java.security.KeyFactorySpi;import java.security.PrivateKey;import java.security.PublicKey;import java.security.interfaces.RSAPrivateCrtKey;import java.security.interfaces.RSAPrivateKey;import java.security.interfaces.RSAPublicKey;import java.security.spec.InvalidKeySpecException;import java.security.spec.KeySpec;import java.security.spec.PKCS8EncodedKeySpec;import java.security.spec.RSAPrivateCrtKeySpec;import java.security.spec.RSAPrivateKeySpec;import java.security.spec.RSAPublicKeySpec;import java.security.spec.X509EncodedKeySpec;public class RSAKeyFactory    extends KeyFactorySpi{  // implicit 0-arguments constructor  protected PublicKey engineGeneratePublic(KeySpec keySpec)      throws InvalidKeySpecException  {    if (keySpec instanceof RSAPublicKeySpec)      {        RSAPublicKeySpec spec = (RSAPublicKeySpec) keySpec;        BigInteger n = spec.getModulus();        BigInteger e = spec.getPublicExponent();        return new GnuRSAPublicKey(Registry.X509_ENCODING_ID, n, e);      }    if (keySpec instanceof X509EncodedKeySpec)      {        X509EncodedKeySpec spec = (X509EncodedKeySpec) keySpec;        byte[] encoded = spec.getEncoded();        PublicKey result;        try          {            result = new RSAKeyPairX509Codec().decodePublicKey(encoded);          }        catch (RuntimeException x)          {            InvalidKeySpecException y = new InvalidKeySpecException();            y.initCause(x);            throw y;          }      }    throw new InvalidKeySpecException("Unsupported (public) key specification");  }  protected PrivateKey engineGeneratePrivate(KeySpec keySpec)      throws InvalidKeySpecException  {    if (keySpec instanceof RSAPrivateCrtKeySpec)      {        RSAPrivateCrtKeySpec spec = (RSAPrivateCrtKeySpec) keySpec;        BigInteger n = spec.getModulus();        BigInteger e = spec.getPublicExponent();        BigInteger d = spec.getPrivateExponent();        BigInteger p = spec.getPrimeP();        BigInteger q = spec.getPrimeQ();        BigInteger dP = spec.getPrimeExponentP();        BigInteger dQ = spec.getPrimeExponentQ();        BigInteger qInv = spec.getCrtCoefficient();        return new GnuRSAPrivateKey(Registry.PKCS8_ENCODING_ID,                                    n, e, d, p, q, dP, dQ, qInv);      }//    if (keySpec instanceof RSAPrivateKeySpec)//      {//        RSAPrivateKeySpec spec = (RSAPrivateKeySpec) keySpec;//        BigInteger n = spec.getModulus();//        BigInteger d = spec.getPrivateExponent();//        return new GnuRSAPrivateKey(Registry.PKCS8_ENCODING_ID,//                                    n, null, d, null, null, null, null, null);//      }    if (keySpec instanceof PKCS8EncodedKeySpec)      {        PKCS8EncodedKeySpec spec = (PKCS8EncodedKeySpec) keySpec;        byte[] encoded = spec.getEncoded();        PrivateKey result;        try          {            result = new RSAKeyPairPKCS8Codec().decodePrivateKey(encoded);          }        catch (RuntimeException x)          {            InvalidKeySpecException y = new InvalidKeySpecException();            y.initCause(x);            throw y;          }      }    throw new InvalidKeySpecException("Unsupported (private) key specification");  }  protected KeySpec engineGetKeySpec(Key key, Class keySpec)      throws InvalidKeySpecException  {    if (key instanceof RSAPublicKey)      {        if (keySpec.isAssignableFrom(RSAPublicKeySpec.class))        {          RSAPublicKey rsaKey = (RSAPublicKey) key;          BigInteger n = rsaKey.getModulus();          BigInteger e = rsaKey.getPublicExponent();          return new RSAPublicKeySpec(n, e);        }        if (keySpec.isAssignableFrom(X509EncodedKeySpec.class))          {            if (key instanceof GnuRSAPublicKey)              {                GnuRSAPublicKey rsaKey = (GnuRSAPublicKey) key;                byte[] encoded = rsaKey.getEncoded(Registry.X509_ENCODING_ID);                return new X509EncodedKeySpec(encoded);              }            if (Registry.X509_ENCODING_SORT_NAME.equalsIgnoreCase(key.getFormat()))              {                byte[] encoded = key.getEncoded();                return new X509EncodedKeySpec(encoded);              }            throw new InvalidKeySpecException("Wrong key type or unsupported (public) key specification");          }        throw new InvalidKeySpecException("Unsupported (public) key specification");      }    if ((key instanceof RSAPrivateCrtKey)        && keySpec.isAssignableFrom(RSAPrivateCrtKeySpec.class))      {        RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey) key;        BigInteger n = rsaKey.getModulus();        BigInteger e = rsaKey.getPublicExponent();        BigInteger d = rsaKey.getPrivateExponent();        BigInteger p = rsaKey.getPrimeP();        BigInteger q = rsaKey.getPrimeQ();        BigInteger dP = rsaKey.getPrimeExponentP();        BigInteger dQ = rsaKey.getPrimeExponentQ();        BigInteger qInv = rsaKey.getCrtCoefficient();        return new RSAPrivateCrtKeySpec(n, e, d, p, q, dP, dQ, qInv);      }    if ((key instanceof RSAPrivateKey)        && keySpec.isAssignableFrom(RSAPrivateKeySpec.class))      {        RSAPrivateKey rsaKey = (RSAPrivateKey) key;        BigInteger n = rsaKey.getModulus();        BigInteger d = rsaKey.getPrivateExponent();        return new RSAPrivateKeySpec(n, d);      }    if (keySpec.isAssignableFrom(PKCS8EncodedKeySpec.class))      {        if (key instanceof GnuRSAPrivateKey)          {            GnuRSAPrivateKey rsaKey = (GnuRSAPrivateKey) key;            byte[] encoded = rsaKey.getEncoded(Registry.PKCS8_ENCODING_ID);            return new PKCS8EncodedKeySpec(encoded);          }        if (Registry.PKCS8_ENCODING_SHORT_NAME.equalsIgnoreCase(key.getFormat()))          {            byte[] encoded = key.getEncoded();            return new PKCS8EncodedKeySpec(encoded);          }        throw new InvalidKeySpecException("Wrong key type or unsupported (private) key specification");      }    throw new InvalidKeySpecException("Wrong key type or unsupported key specification");  }  protected Key engineTranslateKey(Key key) throws InvalidKeyException  {    if ((key instanceof GnuRSAPublicKey) || (key instanceof GnuRSAPrivateKey))      return key;    if (key instanceof RSAPublicKey)      {        RSAPublicKey rsaKey = (RSAPublicKey) key;        BigInteger n = rsaKey.getModulus();        BigInteger e = rsaKey.getPublicExponent();        return new GnuRSAPublicKey(Registry.X509_ENCODING_ID, n, e);      }    if (key instanceof RSAPrivateCrtKey)      {        RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey) key;        BigInteger n = rsaKey.getModulus();        BigInteger e = rsaKey.getPublicExponent();        BigInteger d = rsaKey.getPrivateExponent();        BigInteger p = rsaKey.getPrimeP();        BigInteger q = rsaKey.getPrimeQ();        BigInteger dP = rsaKey.getPrimeExponentP();        BigInteger dQ = rsaKey.getPrimeExponentQ();        BigInteger qInv = rsaKey.getCrtCoefficient();        return new GnuRSAPrivateKey(Registry.PKCS8_ENCODING_ID,                                    n, e, d, p, q, dP, dQ, qInv);      }//    if (key instanceof RSAPrivateKey)//      {//        RSAPrivateKey rsaKey = (RSAPrivateKey) key;//        BigInteger n = rsaKey.getModulus();//        BigInteger d = rsaKey.getPrivateExponent();//        return new GnuRSAPrivateKey(Registry.PKCS8_ENCODING_ID,//                                    n, null, d, null, null, null, null, null);//      }    throw new InvalidKeyException("Unsupported key type");  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?