blob: cd4a189d3773e8a6a8b86760f88ca2e084e0364b [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.crypto.io;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import com.android.org.bouncycastle.crypto.Digest;
/**
* @hide This class is not part of the Android public SDK API
*/
public class DigestInputStream
extends FilterInputStream
{
protected Digest digest;
public DigestInputStream(
InputStream stream,
Digest digest)
{
super(stream);
this.digest = digest;
}
public int read()
throws IOException
{
int b = in.read();
if (b >= 0)
{
digest.update((byte)b);
}
return b;
}
public int read(
byte[] b,
int off,
int len)
throws IOException
{
int n = in.read(b, off, len);
if (n > 0)
{
digest.update(b, off, n);
}
return n;
}
public Digest getDigest()
{
return digest;
}
}