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

com.joyent.http.signature.crypto.NativeRSAProvider Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package com.joyent.http.signature.crypto;

import java.security.Provider;

/**
 * JCE provider used for loading in native RSA SHA256 signing implementation.
 *
 * @author Elijah Zupancic
 */
public class NativeRSAProvider extends Provider {
    /**
     * Creates an instance of a JCE provider that supports native RSA via jnagmp.
     */
    public NativeRSAProvider() {
        super("native-rsa", 1.0, "SHA Digest with RSA Native implementation");
        put("Signature.SHA256withNativeRSA", NativeSHA256.class.getCanonicalName());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy