1 7 8 15 16 package javax.crypto; 17 18 import java.io.*; 19 20 53 public class CipherOutputStream extends FilterOutputStream 54 { 55 56 66 public CipherOutputStream(OutputStream os, Cipher c) { } 67 68 77 protected CipherOutputStream(OutputStream os) { } 78 79 86 public void write(int b) throws IOException { } 87 88 103 public void write(byte[] b) throws IOException { } 104 105 115 public void write(byte[] b, int off, int len) throws IOException { } 116 117 131 public void flush() throws IOException { } 132 133 149 public void close() throws IOException { } 150 } 151 | Popular Tags |