1 2 package ch.ethz.ssh2.signature;3 4 import java.math.BigInteger ;5 6 7 /**8 * RSASignature.9 * 10 * @author Christian Plattner, plattner@inf.ethz.ch11 * @version $Id: RSASignature.java,v 1.1 2005/08/11 12:47:29 cplattne Exp $12 */13 14 public class RSASignature15 {16 BigInteger s;17 18 public BigInteger getS()19 {20 return s;21 }22 23 public RSASignature(BigInteger s)24 {25 this.s = s;26 }27 }