All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.openpgp.operator.jcajce.DigestUpdatingOutputStream Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for the OpenPGP Protocol. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.9
Show newest version
package org.bouncycastle.openpgp.operator.jcajce;

import java.io.IOException;
import java.io.OutputStream;
import java.security.MessageDigest;

class DigestUpdatingOutputStream
    extends OutputStream
{
    private MessageDigest digest;

    DigestUpdatingOutputStream(MessageDigest digest)
    {
        this.digest = digest;
    }

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

    public void write(byte[] bytes)
        throws IOException
    {
        digest.update(bytes);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy