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