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

org.bouncycastle.openpgp.jcajce.JcaPGPSecretKeyRing Maven / Gradle / Ivy

The newest version!
package org.bouncycastle.openpgp.jcajce;

import java.io.IOException;
import java.io.InputStream;

import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.bouncycastle.openpgp.operator.KeyFingerPrintCalculator;
import org.bouncycastle.openpgp.operator.jcajce.JcaKeyFingerprintCalculator;

public class JcaPGPSecretKeyRing
    extends PGPSecretKeyRing
{
    private static KeyFingerPrintCalculator getFingerPrintCalculator()
    {
        return new JcaKeyFingerprintCalculator();
    }

    public JcaPGPSecretKeyRing(byte[] encoding)
        throws IOException, PGPException
    {
        super(encoding, getFingerPrintCalculator());
    }

    public JcaPGPSecretKeyRing(InputStream in)
        throws IOException, PGPException
    {
        super(in, getFingerPrintCalculator());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy