java.lang.Object
java.io.OutputStream
org.refcodes.security.DecryptionOutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class DecryptionOutputStream extends OutputStream
A
DecryptionOutputStream
wraps an OutputStream
and produces
output bytes by applying a Encrypter
on each byte to be written
before delegating the processed vale to the given OutputStream
. The
output of the DecryptionOutputStream
can be converted back by the
according EncryptionInputStream
.-
Constructor Summary
Constructors Constructor Description DecryptionOutputStream(OutputStream aOutputStream, Encrypter<byte[],byte[],EncryptionException> aEncrypter)
Constructs theDecryptionOutputStream
by wrapping the givenOutputStream
for the providedEncrypter
to be applied on the bytes to be written. -
Method Summary
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
DecryptionOutputStream
public DecryptionOutputStream(OutputStream aOutputStream, Encrypter<byte[],byte[],EncryptionException> aEncrypter)Constructs theDecryptionOutputStream
by wrapping the givenOutputStream
for the providedEncrypter
to be applied on the bytes to be written.- Parameters:
aOutputStream
- TheOutputStream
to be wrapped.aEncrypter
- TheEncrypter
to be applied to the bytes to be written.
-
-
Method Details
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
equals
-
flush
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
hashCode
public int hashCode() -
toString
-
write
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-