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