1 package ch.ethz.ssh2.signature;2 3 import java.math.BigInteger ;4 5 /**6 * DSASignature.7 * 8 * @author Christian Plattner, plattner@inf.ethz.ch9 * @version $Id: DSASignature.java,v 1.1 2005/05/26 14:53:30 cplattne Exp $10 */11 public class DSASignature12 {13 private BigInteger r;14 private BigInteger s;15 16 public DSASignature(BigInteger r, BigInteger s)17 {18 this.r = r;19 this.s = s;20 }21 22 public BigInteger getR()23 {24 return r;25 }26 27 public BigInteger getS()28 {29 return s;30 }31 }32