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

net.optionfactory.spring.pem.spi.PemProvider Maven / Gradle / Ivy

There is a newer version: 21.2
Show newest version
package net.optionfactory.spring.pem.spi;

import java.security.Provider;

public class PemProvider extends Provider {

    public static final String TYPE = "PEM";

    public PemProvider() {
        super("PEM", 1, "PEM KeyStores/TrustStores");
        put("KeyStore.PEM", PemKeyStore.class.getName());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy