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

org.postgresql.ssl.PrivateKeyFactory Maven / Gradle / Ivy

There is a newer version: 5.0.0.9.pg
Show newest version
package io.mogdb.ssl;

import java.security.PrivateKey;

import javax.security.auth.callback.PasswordCallback;
/**
 * 
 * Provide PrivateKey from EncryptedKey
 */
public interface PrivateKeyFactory {

    public PrivateKey getPrivateKeyFromEncryptedKey(byte[] data, PasswordCallback pwdcb)  throws Exception;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy