01: package ch.ethz.ssh2.signature;
02:
03: import java.math.BigInteger;
04:
05: /**
06: * RSAPublicKey.
07: *
08: * @author Christian Plattner, plattner@inf.ethz.ch
09: * @version $Id: RSAPublicKey.java,v 1.2 2005/08/11 12:47:29 cplattne Exp $
10: */
11: public class RSAPublicKey {
12: BigInteger e;
13: BigInteger n;
14:
15: public RSAPublicKey(BigInteger e, BigInteger n) {
16: this .e = e;
17: this .n = n;
18: }
19:
20: public BigInteger getE() {
21: return e;
22: }
23:
24: public BigInteger getN() {
25: return n;
26: }
27: }
|