List of usage examples for java.security Provider subclass-usage
From source file YourOwnProvider.java
public class YourOwnProvider extends Provider { public YourOwnProvider() { super("YourOwn", 1.0, "YourOwn Security Provider v1.0"); put("KeyGenerator.XOR", "yourPackageName.XORKeyGenerator"); put("KeyPairGenerator.YourOwn", "yourPackageName.YourOwnKeyPairGenerator"); put("KeyFactory.YourOwn", "yourPackageName.YourOwnKeyFactory");
From source file ECCProvider.java
public final class ECCProvider extends java.security.Provider { private static final String INFO = "Java2s's provider"; public ECCProvider() { super("Java2s", 1.0, INFO); AccessController.doPrivileged(new PrivilegedAction() {
From source file be.fedict.commons.eid.jca.BeIDProvider.java
/**
* The JCA security provider. Provides an eID based {@link KeyStore},
* {@link Signature}, {@link KeyManagerFactory}, and {@link SecureRandom}.
* <p/>
* Usage:
*
From source file es.mityc.javasign.pkstore.mscapi.mityc.SunMSCAPI_MITyC.java
/**
* A Cryptographic Service Provider for the Microsoft Crypto API.
*
* @since 1.6
*/
From source file org.opensc.pkcs11.PKCS11Provider.java
/**
* The PKCS#11 provider of the OpenSC project.
*
* This provider is based on the
* <a href="http://www.rsasecurity.com/rsalabs/node.asp?id=2133">RSA Security Inc. PKCS#11 Cryptographic Token Interface (Cryptoki)</a>.
*
From source file MainClass.java
class MyProvider extends Provider { public MyProvider() { super("MyProvider", 1.0, "Java2s.com Collections Example"); put("CRC32", "CRC"); } }
From source file sernet.gs.ui.rcp.main.security.VeriniceSecurityProvider.java
@SuppressWarnings({ "serial", "restriction" }) public final class VeriniceSecurityProvider extends Provider { private static final Logger LOG = Logger.getLogger(VeriniceSecurityProvider.class); public static final String NAME = "VeriniceSecurityProvider";