⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsasignature.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
/* DSASignature.java   Copyright (C) 1999 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., 59 Temple Place, Suite 330, Boston, MA02111-1307 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.provider;import java.math.BigInteger;import java.security.InvalidAlgorithmParameterException;import java.security.InvalidKeyException;import java.security.InvalidParameterException;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;import java.security.NoSuchProviderException;import java.security.PrivateKey;import java.security.PublicKey;import java.security.SecureRandom;import java.security.SignatureException;import java.security.SignatureSpi;import java.security.interfaces.DSAPrivateKey;import java.security.interfaces.DSAPublicKey;import java.security.spec.AlgorithmParameterSpec;import java.util.Random;import gnu.java.security.der.DEREncodingException;public class DSASignature extends SignatureSpi{  private DSAPublicKey publicKey;  private DSAPrivateKey privateKey;  private MessageDigest digest = null;  public DSASignature()  {}  private void init()  {    if( digest == null ) {      try {	digest = MessageDigest.getInstance( "SHA1", "GNU" );      } catch ( NoSuchAlgorithmException nsae ) {	digest = null;      } catch ( NoSuchProviderException nspe ) {	digest = null;      }    }    digest.reset();  }  public void engineInitVerify(PublicKey publicKey)    throws InvalidKeyException  {    if( publicKey instanceof DSAPublicKey )      this.publicKey = (DSAPublicKey)publicKey;    else      throw new InvalidKeyException();    init();  }  public void engineInitSign(PrivateKey privateKey)    throws InvalidKeyException  {    if( privateKey instanceof DSAPrivateKey )      this.privateKey = (DSAPrivateKey)privateKey;    else      throw new InvalidKeyException();    init();  }  public void engineInitSign(PrivateKey privateKey, 			     SecureRandom random)    throws InvalidKeyException  {    if( privateKey instanceof DSAPrivateKey )      this.privateKey = (DSAPrivateKey)privateKey;    else      throw new InvalidKeyException();    appRandom = random;    init();  }  public void engineUpdate(byte b)    throws SignatureException  {    if( digest == null )      throw new SignatureException();		    digest.update( b );  }  public void engineUpdate(byte[] b, int off, int len)    throws SignatureException  {    if( digest == null )      throw new SignatureException();		    digest.update( b, off, len );  }  public byte[] engineSign()    throws SignatureException  {    if( digest == null )      throw new SignatureException();		    if( privateKey == null)      throw new SignatureException();		    try {      BigInteger g = privateKey.getParams().getG();      BigInteger p = privateKey.getParams().getP();      BigInteger q = privateKey.getParams().getQ();      BigInteger x = privateKey.getX();      BigInteger k = new BigInteger( 159, (Random)appRandom );      BigInteger r = g.modPow(k, p);      r = r.mod(q);      byte bytes[] = digest.digest();      BigInteger sha = new BigInteger(1, bytes);      BigInteger s = sha.add( x.multiply( r ) );      s = s.multiply( k.modInverse(q) ).mod( q );      DERWriter writer = new DERWriter();      return writer.joinarrays( writer.writeBigInteger( r ),  writer.writeBigInteger( s ) );    } catch ( ArithmeticException ae ) {      throw new SignatureException();    }  }  public int engineSign(byte[] outbuf, int offset, int len)    throws SignatureException  {    byte tmp[] = engineSign();    if( tmp.length > len )      throw new SignatureException();    System.arraycopy( tmp, 0, outbuf, offset, tmp.length );    return tmp.length;  }  public boolean engineVerify(byte[] sigBytes)    throws SignatureException  {    //Decode sigBytes from ASN.1 DER encoding    try {      DERReader reader = new DERReader( sigBytes );      BigInteger r = reader.getBigInteger();      BigInteger s = reader.getBigInteger();      BigInteger g = publicKey.getParams().getG();      BigInteger p = publicKey.getParams().getP();      BigInteger q = publicKey.getParams().getQ();      BigInteger y = publicKey.getY();      BigInteger w = s.modInverse( q );      byte bytes[] = digest.digest();      BigInteger sha = new BigInteger(1, bytes);      BigInteger u1 = w.multiply( sha ).mod( q );      BigInteger u2 = r.multiply( w ).mod( q );      //This should test the compiler :)      BigInteger v = g.modPow( u1, p ).multiply( y.modPow( u2, p ) ).mod( p ).mod( q );      if( v.equals( r ) )	return true;      else	return false;    } catch ( DEREncodingException deree ) {      throw new SignatureException();    }  }  public void engineSetParameter(String param,				 Object value)    throws InvalidParameterException  {    throw new InvalidParameterException();  }  public void engineSetParameter(AlgorithmParameterSpec params)    throws InvalidAlgorithmParameterException  {    throw new InvalidParameterException();  }  public Object engineGetParameter(String param)    throws InvalidParameterException  {    throw new InvalidParameterException();  }  public Object clone()    //throws CloneNotSupportedException  {    return new DSASignature( this );  }  private DSASignature( DSASignature copy )  {    this();    this.publicKey = copy.publicKey;    this.privateKey = copy.privateKey;    this.digest = copy.digest;  }}

⌨️ 快捷键说明

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