11 lines
258 B
Java
11 lines
258 B
Java
package com.tridium.platcrypto.core;
|
|
|
|
import com.tridium.crypto.core.provider.IProvider;
|
|
import java.util.Enumeration;
|
|
|
|
public interface IProviderInfo {
|
|
IProvider getProvider(String str) throws Exception;
|
|
|
|
Enumeration providers() throws Exception;
|
|
}
|