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

org.bouncycastle.tsp.ers.ERSByteData Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
package org.bouncycastle.tsp.ers;

import org.bouncycastle.operator.DigestCalculator;

/**
 * Generic class for holding byte[] data for RFC 4998 ERS.
 */
public class ERSByteData
    extends ERSCachingData
{
    private final byte[] content;

    public ERSByteData(byte[] content)
    {
        this.content = content;
    }

    protected byte[] calculateHash(DigestCalculator digestCalculator)
    {
        return ERSUtil.calculateDigest(digestCalculator, content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy