Package org.nuxeo.ecm.core.blob.binary
Class AESBinaryManager.CipherAndDigestOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- org.nuxeo.ecm.core.blob.binary.AESBinaryManager.CipherAndDigestOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
- Enclosing class:
- AESBinaryManager
public static class AESBinaryManager.CipherAndDigestOutputStream extends FilterOutputStream
ACipherOutputStreamthat also does a digest of the original stream at the same time.
-
-
Field Summary
Fields Modifier and Type Field Description protected Ciphercipherprotected byte[]digestprotected MessageDigestmessageDigestprotected OutputStreamout
-
Constructor Summary
Constructors Constructor Description CipherAndDigestOutputStream(OutputStream out, Cipher cipher, MessageDigest messageDigest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()byte[]getDigest()voidwrite(byte[] b, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.FilterOutputStream
write
-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Field Detail
-
cipher
protected Cipher cipher
-
out
protected OutputStream out
-
messageDigest
protected MessageDigest messageDigest
-
digest
protected byte[] digest
-
-
Constructor Detail
-
CipherAndDigestOutputStream
public CipherAndDigestOutputStream(OutputStream out, Cipher cipher, MessageDigest messageDigest)
-
-
Method Detail
-
getDigest
public byte[] getDigest()
-
write
public void write(int b) throws IOException- Overrides:
writein classFilterOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classFilterOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classFilterOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classFilterOutputStream- Throws:
IOException
-
-