blob: 7e26dbed874bbffc828f621f98c90b25a81a64ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package cz.crcs.ectester.standalone.libs;
import cz.crcs.ectester.standalone.consts.KeyAgreementIdent;
import cz.crcs.ectester.standalone.consts.KeyPairGeneratorIdent;
import cz.crcs.ectester.standalone.consts.SignatureIdent;
import java.util.Set;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public interface ECLibrary {
boolean initialize();
boolean isInitialized();
Set<KeyAgreementIdent> getECKAs();
Set<SignatureIdent> getECSigs();
Set<KeyPairGeneratorIdent> getKPGs();
String name();
}
|