summaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/libs/ECLibrary.java
blob: 0f819783302972a688d57193a87777bd560698b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<String> getCurves();

    Set<KeyAgreementIdent> getKAs();

    Set<SignatureIdent> getSigs();

    Set<KeyPairGeneratorIdent> getKPGs();

    String name();
}