aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/io/DigestOutputStream.java
blob: d280b514f5d658643386d11558989d06aafe69d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package org.spongycastle.crypto.io;

import java.io.IOException;
import java.io.OutputStream;

import org.spongycastle.crypto.Digest;

public class DigestOutputStream
    extends OutputStream
{
    protected Digest digest;

    public DigestOutputStream(
        Digest          Digest)
    {
        this.digest = Digest;
    }

    public void write(int b)
        throws IOException
    {
        digest.update((byte)b);
    }

    public void write(
        byte[] b,
        int off,
        int len)
        throws IOException
    {
        digest.update(b, off, len);
    }

    public byte[] getDigest()
    {
        byte[] res = new byte[digest.getDigestSize()];
        
        digest.doFinal(res, 0);
        
        return res;
    }
}