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

io.github.dbstarll.utils.lang.security.SecretKeyFactoryBuilder Maven / Gradle / Ivy

The newest version!
package io.github.dbstarll.utils.lang.security;

import javax.crypto.SecretKeyFactory;
import java.security.NoSuchAlgorithmException;

public final class SecretKeyFactoryBuilder
        extends AbstractSecurityBuilder {
    public SecretKeyFactoryBuilder(SecretKeyFactoryAlgorithm algorithm)
            throws NoSuchAlgorithmException, InstanceException {
        super(SecretKeyFactory.class, algorithm);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy