KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > ssh2 > signature > RSASignature


1
2 package ch.ethz.ssh2.signature;
3
4 import java.math.BigInteger JavaDoc;
5
6
7 /**
8  * RSASignature.
9  *
10  * @author Christian Plattner, plattner@inf.ethz.ch
11  * @version $Id: RSASignature.java,v 1.1 2005/08/11 12:47:29 cplattne Exp $
12  */

13
14 public class RSASignature
15 {
16     BigInteger JavaDoc s;
17
18     public BigInteger JavaDoc getS()
19     {
20         return s;
21     }
22
23     public RSASignature(BigInteger JavaDoc s)
24     {
25         this.s = s;
26     }
27 }
Popular Tags