17 lines
491 B
Java
17 lines
491 B
Java
package com.tridium.platcrypto.core;
|
|
|
|
import com.tridium.crypto.core.io.ICoreCryptoManager;
|
|
import com.tridium.crypto.core.io.ICoreExemptionStore;
|
|
import java.io.File;
|
|
import javax.baja.security.crypto.ICryptoManagerEx;
|
|
|
|
public interface IExtCryptoManager extends ICryptoManagerEx {
|
|
File getBaseDir();
|
|
|
|
ICoreCryptoManager getCoreCryptoManager() throws Exception;
|
|
|
|
ICoreExemptionStore getExemptionStore() throws Exception;
|
|
|
|
IProviderInfo getProviderInfo() throws Exception;
|
|
}
|