Add LaTeX generation and test data
[rsa.git] / AbstractRSA.java
1 import java.io.*;
2
3 public interface AbstractRSA {
4
5 //      RSA(int numBits);
6 //      RSA(String keyFile) throws FileNotFoundException, IOException;
7
8         public void printKeys();
9
10         public void encrypt() throws IOException;
11         public void decrypt() throws IOException;
12
13 //      public static void main (String[] arguments) throws IOException;
14 }