Package org.bouncycastle.crypto.io
Class DigestOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.bouncycastle.crypto.io.DigestOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class DigestOutputStream extends java.io.OutputStream
-
-
Constructor Summary
Constructors Constructor Description DigestOutputStream(Digest Digest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getDigest()
void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Field Detail
-
digest
protected Digest digest
-
-
Constructor Detail
-
DigestOutputStream
public DigestOutputStream(Digest Digest)
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
getDigest
public byte[] getDigest()
-
-