Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CAVPListener.java « cavp « test « crypto « bouncycastle « org « java « test « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81f86e5782bff6f6c0d8b43be6e9108c5417126b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.bouncycastle.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();
}