1 7 8 15 16 package javax.crypto; 17 18 import java.io.*; 19 20 56 public class CipherInputStream extends FilterInputStream 57 { 58 59 68 public CipherInputStream(InputStream is, Cipher c) { } 69 70 78 protected CipherInputStream(InputStream is) { } 79 80 95 public int read() throws IOException { } 96 97 113 public int read(byte[] b) throws IOException { } 114 115 131 public int read(byte[] b, int off, int len) throws IOException { } 132 133 151 public long skip(long n) throws IOException { } 152 153 164 public int available() throws IOException { } 165 166 177 public void close() throws IOException { } 178 179 189 public boolean markSupported() { } 190 } 191 | Popular Tags |