8 lines
201 B
Java
8 lines
201 B
Java
package com.tridium.platcrypto.core;
|
|
|
|
import com.tridium.crypto.core.io.ICoreCryptoManager;
|
|
|
|
public interface ICryptoManagerProvider {
|
|
ICoreCryptoManager getCoreCryptoManager() throws Exception;
|
|
}
|