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

io.gatling.recorder.internal.bouncycastle.eac.operator.jcajce.NamedEACHelper Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.eac.operator.jcajce;

import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.Signature;

class NamedEACHelper
    extends EACHelper
{
    private final String providerName;

    NamedEACHelper(String providerName)
    {
        this.providerName = providerName;
    }

    protected Signature createSignature(String type)
        throws NoSuchProviderException, NoSuchAlgorithmException
    {
        return Signature.getInstance(type, providerName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy