1 package ch.ethz.ssh2.signature;2 3 import java.math.BigInteger ;4 5 /**6 * RSAPublicKey.7 * 8 * @author Christian Plattner, plattner@inf.ethz.ch9 * @version $Id: RSAPublicKey.java,v 1.2 2005/08/11 12:47:29 cplattne Exp $10 */11 public class RSAPublicKey12 {13 BigInteger e;14 BigInteger n;15 16 public RSAPublicKey(BigInteger e, BigInteger n)17 {18 this.e = e;19 this.n = n;20 }21 22 public BigInteger getE()23 {24 return e;25 }26 27 public BigInteger getN()28 {29 return n;30 }31 }