aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/cavp/CAVPListener.java
blob: 71011614bfe6f49fecab80ff41d2eada608ec045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.spongycastle.crypto.test.cavp;

import java.util.Properties;

public interface CAVPListener
{
    public void setup();

    public void receiveStart(String name);

    public void receiveCAVPVectors(String name, Properties config, Properties vectors);

    public void receiveCommentLine(String commentLine);

    public void receiveEnd();

    public void tearDown();
}