2026-03-17 13:31:18 -07:00

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;
}