classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] PATCH: DiffieHellman and RSA cipher support


From: Casey Marshall
Subject: [cp-patches] PATCH: DiffieHellman and RSA cipher support
Date: Sat, 04 Jun 2005 16:17:22 -0700
User-agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317)

Hi,

Attached are implementations of the Diffie-Hellman key agreement and the
RSA encryption scheme from PKCS#1, version 1.5. Both of these are used
in the default SSL key exchange operations.

Ok to commit? Parts of this use the logging classes I posted earlier,
which I can remove if that patch is not approved.

2005-06-04  Casey Marshall  <address@hidden>

        * gnu/java/security/provider/Gnu.java (<init>): add
        Diffie-Hellman key agreement and RSA cipher entries.
        * gnu/javax/crypto/DiffieHellmanImpl.java: new file.
        * gnu/javax/crypto/GnuDHPrivateKey.java: new file.
        * gnu/javax/crypto/RSACipherImpl.java: new file.
Index: gnu/java/security/provider/Gnu.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/java/security/provider/Gnu.java,v
retrieving revision 1.7
diff -u -b -B -r1.7 Gnu.java
--- gnu/java/security/provider/Gnu.java 20 Feb 2005 22:19:17 -0000      1.7
+++ gnu/java/security/provider/Gnu.java 4 Jun 2005 23:11:05 -0000
@@ -161,6 +161,14 @@
         // CertStore
         put("CertStore.Collection", CollectionCertStoreImpl.class.getName());

+       // KeyAgreement
+       put("KeyAgreement.DiffieHellman", 
gnu.javax.crypto.DiffieHellmanImpl.class.getName());
+       put("Alg.Alias.KeyAgreement.DH", "DiffieHellman");
+
+       // Cipher
+       put("Cipher.RSAES-PKCS1-v1_5", 
gnu.javax.crypto.RSACipherImpl.class.getName());
+       put("Alg.Alias.Cipher.RSA", "RSAES-PKCS1-v1_5");
+
         return null;
       }
     });
/* DiffieHellmanImpl.java -- implementation of the Diffie-Hellman key agreement.
   Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 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.javax.crypto;

import gnu.java.security.provider.GnuDHPublicKey;

import java.math.BigInteger;

import java.security.Key;
import java.security.InvalidKeyException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SecureRandom;
import java.security.spec.AlgorithmParameterSpec;

import javax.crypto.KeyAgreementSpi;
import javax.crypto.SecretKey;
import javax.crypto.interfaces.DHPrivateKey;
import javax.crypto.interfaces.DHPublicKey;
import javax.crypto.spec.DHParameterSpec;
import javax.crypto.spec.SecretKeySpec;

/**
 * The Diffie-Hellman key agreement.
 *
 * @author Casey Marshall (address@hidden)
 */
public final class DiffieHellmanImpl extends KeyAgreementSpi
{

  /** The private key being used for this agreement. */
  private DHPrivateKey key;

  /** The random-number generator used to generate secrets. */
  private SecureRandom random;

  /** The current result. */
  private BigInteger result;

  /** True if the caller told us we are done. */
  private boolean last_phase_done;

  /** Trivial default constructor. */
  public DiffieHellmanImpl ()
  {
    key = null;
    random = null;
    result = null;
    last_phase_done = false;
  }

  // KeyAgreementSpi methods.

  protected Key engineDoPhase (final Key incoming, final boolean lastPhase)
    throws InvalidKeyException
  {
    if (key == null)
      throw new IllegalStateException ("not initialized");
    if (last_phase_done)
      throw new IllegalStateException ("last phase already done");

    if (!(incoming instanceof DHPublicKey))
      throw new InvalidKeyException ("expecting 
javax.crypto.interfaces.DHPublicKey");
    DHPublicKey pub = (DHPublicKey) incoming;
    DHParameterSpec s1 = key.getParams();
    DHParameterSpec s2 = key.getParams();
    if (!s1.getG().equals (s2.getG())
        || !s1.getP().equals (s2.getP())
        || s1.getL() != s2.getL())
      throw new InvalidKeyException ("supplied key is not compatible");

    BigInteger randval = new BigInteger (s1.getL(), random);
    BigInteger out = s1.getG().modPow (key.getX(), s1.getP());
    if (result == null)
      result = s1.getG();
    result = result.modPow (pub.getY(), s1.getP());
    if (lastPhase)
      {
        last_phase_done = true;
        return null;
      }
    return new GnuDHPublicKey (s1, out, null);
  }

  protected byte[] engineGenerateSecret ()
  {
    if (result == null || !last_phase_done)
      throw new IllegalStateException ("not finished");

    byte[] buf = result.toByteArray ();
    if (buf[0] == 0x00)
      {
        byte[] buf2 = new byte[buf.length - 1];
        System.arraycopy (buf, 1, buf2, 0, buf2.length);
        buf = buf2;
      }
    return buf;
  }

  protected int engineGenerateSecret (final byte[] secret, final int offset)
  {
    byte[] s = engineGenerateSecret();
    System.arraycopy (s, 0, secret, offset, s.length);
    return s.length;
  }

  protected SecretKey engineGenerateSecret (final String algorithm)
    throws InvalidKeyException
  {
    byte[] s = engineGenerateSecret();
    return new SecretKeySpec (s, algorithm);
  }

  protected void engineInit (final Key key, final SecureRandom random)
    throws InvalidKeyException
  {
    if (!(key instanceof DHPrivateKey))
      throw new InvalidKeyException ("not a 
javax.crypto.interfaces.DHPrivateKey");
    this.key = (DHPrivateKey) key;
    if (random != null)
      this.random = random;
    else if (this.random == null)
      this.random = new SecureRandom();
    result = null;
    last_phase_done = false;
  }

  protected void engineInit (final Key key, final AlgorithmParameterSpec params,
                             final SecureRandom random)
    throws InvalidKeyException
  {
    engineInit (key, random);
  }
}
/* GnuDHPrivateKey.java -- a Diffie-Hellman private key.
   Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 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.javax.crypto;

import java.math.BigInteger;

import javax.crypto.interfaces.DHKey;
import javax.crypto.interfaces.DHPrivateKey;
import javax.crypto.spec.DHParameterSpec;

/**
 * A Diffie-Hellman private key.
 *
 * @author Casey Marshall (address@hidden)
 */
public class GnuDHPrivateKey implements DHPrivateKey
{

  private final BigInteger x;
  private final DHParameterSpec params;

  public GnuDHPrivateKey (final BigInteger x, final DHParameterSpec params)
  {
    x.getClass ();
    params.getClass ();
    this.x = x;
    this.params = params;
  }

  public DHParameterSpec getParams()
  {
    return params;
  }

  public String getAlgorithm()
  {
    return "DiffieHellman";
  }

  public String getFormat ()
  {
    return "NONE";
  }

  public byte[] getEncoded ()
  {
    return null;
  }

  public BigInteger getX ()
  {
    return x;
  }
}
/* DiffieHellmanImpl.java -- implementation of the Diffie-Hellman key agreement.
   Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 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.javax.crypto;

import gnu.classpath.ByteArray;
import gnu.classpath.debug.Component;
import gnu.classpath.debug.SystemLogger;

import java.math.BigInteger;

import java.security.AlgorithmParameters;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;

import java.security.interfaces.RSAKey;
import java.security.interfaces.RSAPrivateKey;
import java.security.interfaces.RSAPrivateCrtKey;
import java.security.interfaces.RSAPublicKey;

import java.security.spec.AlgorithmParameterSpec;

import java.util.logging.Logger;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.CipherSpi;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.ShortBufferException;

public class RSACipherImpl extends CipherSpi
{
  private static final Logger logger = SystemLogger.SYSTEM;

  private static final byte[] EMPTY = new byte[0];
  private int opmode = -1;
  private RSAPrivateKey decipherKey = null;
  private RSAPublicKey blindingKey = null;
  private RSAPublicKey encipherKey = null;
  private SecureRandom random = null;
  private byte[] dataBuffer = null;
  private int pos = 0;

  protected void engineSetMode (String mode) throws NoSuchAlgorithmException
  {
    throw new NoSuchAlgorithmException ("only one mode available");
  }

  protected void engineSetPadding (String pad) throws NoSuchPaddingException
  {
    throw new NoSuchPaddingException ("only one padding available");
  }

  protected int engineGetBlockSize ()
  {
    return 1;
  }

  protected int engineGetOutputSize (int inputLen)
  {
    int outputLen = 0;
    if (decipherKey != null)
      {
        outputLen = (decipherKey.getModulus ().bitLength () + 7) / 8;
      }
    else if (encipherKey != null)
      {
        outputLen = (encipherKey.getModulus ().bitLength () + 7) / 8;
      }
    else
      throw new IllegalStateException ("not initialized");
    if (inputLen > outputLen)
      throw new IllegalArgumentException ("not configured to encode " + inputLen
                                          + "bytes; at most " + outputLen);
    return outputLen;
  }

  protected int engineGetKeySize (final Key key) throws InvalidKeyException
  {
    if (!(key instanceof RSAKey))
      throw new InvalidKeyException ("not an RSA key");
    return ((RSAKey) key).getModulus ().bitLength ();
  }

  protected byte[] engineGetIV ()
  {
    return null;
  }

  protected AlgorithmParameters engineGetParameters()
  {
    return null;
  }

  protected void engineInit (int opmode, Key key, SecureRandom random)
    throws InvalidKeyException
  {
    int outputLen = 0;
    if (opmode == Cipher.ENCRYPT_MODE)
      {
        if (!(key instanceof RSAPublicKey))
          throw new InvalidKeyException ("expecting a RSAPublicKey");
        encipherKey = (RSAPublicKey) key;
        decipherKey = null;
        blindingKey = null;
        outputLen = (encipherKey.getModulus ().bitLength () + 7) / 8;
      }
    else if (opmode == Cipher.DECRYPT_MODE)
      {
        if (key instanceof RSAPrivateKey)
          {
            decipherKey = (RSAPrivateKey) key;
            encipherKey = null;
            blindingKey = null;
            outputLen = (decipherKey.getModulus ().bitLength () + 7) / 8;
          }
        else if (key instanceof RSAPublicKey)
          {
            if (decipherKey == null)
              throw new IllegalStateException ("must configure decryption key 
first");
            if (!decipherKey.getModulus ().equals (((RSAPublicKey) 
key).getModulus ()))
              throw new InvalidKeyException ("blinding key is not compatible");
            blindingKey = (RSAPublicKey) key;
            return;
          }
        else
          throw new InvalidKeyException ("expecting either an RSAPrivateKey or 
an RSAPublicKey (for blinding)");
      }
    else
      throw new IllegalArgumentException ("only encryption and decryption 
supported");
    this.random = random;
    this.opmode = opmode;
    pos = 0;
    dataBuffer = new byte[outputLen];
  }

  protected void engineInit (int opmode, Key key, AlgorithmParameterSpec spec, 
SecureRandom random)
    throws InvalidKeyException
  {
    engineInit (opmode, key, random);
  }

  protected void engineInit (int opmode, Key key, AlgorithmParameters params, 
SecureRandom random)
    throws InvalidKeyException
  {
    engineInit (opmode, key, random);
  }

  protected byte[] engineUpdate (byte[] in, int offset, int length)
  {
    if (opmode != Cipher.ENCRYPT_MODE && opmode != Cipher.DECRYPT_MODE)
      throw new IllegalStateException ("not initialized");
    System.arraycopy (in, offset, dataBuffer, pos, length);
    pos += length;
    return EMPTY;
  }

  protected int engineUpdate (byte[] in, int offset, int length, byte[] out, 
int outOffset)
  {
    engineUpdate (in, offset, length);
    return 0;
  }

  protected byte[] engineDoFinal (byte[] in, int offset, int length)
    throws IllegalBlockSizeException, BadPaddingException
  {
    engineUpdate (in, offset, length);
    if (opmode == Cipher.DECRYPT_MODE)
      {
        if (pos < dataBuffer.length)
          throw new IllegalBlockSizeException ("expecting exactly " + 
dataBuffer.length + " bytes");
        BigInteger enc = new BigInteger (1, dataBuffer);
        byte[] dec = rsaDecrypt (enc);
        logger.log (Component.CRYPTO, "RSA: decryption produced\n{0}",
                    new ByteArray (dec));
        if (dec[0] != 0x02)
          throw new BadPaddingException ("expected padding type 2");
        int i;
        for (i = 1; i < dec.length && dec[i] != 0x00; i++);
        int len = dec.length - i;
        byte[] result = new byte[len];
        System.arraycopy (dec, i, result, 0, len);
        pos = 0;
        return result;
      }
    else
      {
        offset = dataBuffer.length - pos;
        if (offset < 3)
          throw new IllegalBlockSizeException ("input is too large to encrypt");
        byte[] dec = new byte[dataBuffer.length];
        dec[0] = 0x02;
        if (random == null)
          random = new SecureRandom ();
        byte[] pad = new byte[offset - 2];
        random.nextBytes (pad);
        for (int i = 0; i < pad.length; i++)
          if (pad[i] == 0)
            pad[i] = 1;
        System.arraycopy (pad, 0, dec, 1, pad.length);
        dec[dec.length - pos] = 0x00;
        System.arraycopy (dataBuffer, 0, dec, offset, pos);
        logger.log (Component.CRYPTO, "RSA: produced padded plaintext\n{0}",
                    new ByteArray (dec));
        BigInteger x = new BigInteger (1, dec);
        BigInteger y = x.modPow (encipherKey.getPublicExponent (),
                                 encipherKey.getModulus ());
        byte[] enc = y.toByteArray ();
        if (enc[0] == 0x00)
          {
            byte[] tmp = new byte[enc.length - 1];
            System.arraycopy (enc, 1, tmp, 0, tmp.length);
            enc = tmp;
          }
        pos = 0;
        return enc;
      }
  }

  protected int engineDoFinal (byte[] out, int offset)
    throws ShortBufferException, IllegalBlockSizeException, BadPaddingException
  {
    byte[] result = engineDoFinal (EMPTY, 0, 0);
    if (out.length - offset < result.length)
      throw new ShortBufferException ("need " + result.length + ", have "
                                      + (out.length - offset));
    System.arraycopy (result, 0, out, offset, result.length);
    return result.length;
  }

  protected int engineDoFinal (final byte[] input, final int offset, final int 
length,
                               final byte[] output, final int outputOffset)
    throws ShortBufferException, IllegalBlockSizeException, BadPaddingException
  {
    byte[] result = engineDoFinal (input, offset, length);
    if (output.length - outputOffset < result.length)
      throw new ShortBufferException ("need " + result.length + ", have "
                                      + (output.length - outputOffset));
    System.arraycopy (result, 0, output, outputOffset, result.length);
    return result.length;
  }

  /**
   * Decrypts the ciphertext, employing RSA blinding if possible.
   */
  private byte[] rsaDecrypt (BigInteger enc)
  {
    if (random == null)
      random = new SecureRandom ();
    BigInteger n = decipherKey.getModulus ();
    BigInteger r = null;
    BigInteger pubExp = null;
    if (blindingKey != null)
      pubExp = blindingKey.getPublicExponent ();
    if (pubExp != null && (decipherKey instanceof RSAPrivateCrtKey))
      pubExp = ((RSAPrivateCrtKey) decipherKey).getPublicExponent ();
    if (pubExp != null)
      {
        r = new BigInteger (n.bitLength () - 1, random);
        enc = r.modPow (pubExp, n).multiply (enc).mod (n);
      }

    BigInteger dec = enc.modPow (decipherKey.getPrivateExponent (), n);

    if (pubExp != null)
      {
        dec = dec.multiply (r.modInverse (n)).mod (n);
      }

    return dec.toByteArray ();
  }
}

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]