aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/libs/ECLibrary.java
blob: b2792bd3e039b6d8a8311f6479a3c798c233c918 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cz.crcs.ectester.standalone.libs;

import cz.crcs.ectester.standalone.consts.KeyAgreementIdent;
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();

    String name();
}