001    package railo.runtime.crypt;
002    
003    import java.io.IOException;
004    import java.io.OutputStream;
005    
006    /**
007     * 
008     */
009    public final class EncryptOutputStream extends OutputStream {
010    
011        @Override
012        public void close() throws IOException {
013            super.close();
014        }
015        @Override
016        public void flush() throws IOException {
017            super.flush();
018        }
019        @Override
020        public void write(byte[] b, int off, int len) throws IOException {
021            super.write(b, off, len);
022        }
023        @Override
024        public void write(byte[] b) throws IOException {
025            super.write(b);
026        }
027        @Override
028        public void write(int b) throws IOException {
029            
030        }
031    
032        public static void main(String[] args) {
033            
034        }
035    }