aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/KDFCounterGeneratorTest.java
blob: 3b58db2a2ce5eacaeb5d3c5d89ec22cf7c22b2d0 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package org.spongycastle.crypto.test;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;

import org.spongycastle.crypto.test.cavp.CAVPReader;
import org.spongycastle.crypto.test.cavp.KDFCounterTests;
import org.spongycastle.util.test.SimpleTest;

public class KDFCounterGeneratorTest
    extends SimpleTest
{

    private static void testCounter()
    {

        CAVPReader cavpReader = new CAVPReader(new KDFCounterTests());

        final InputStream stream = CAVPReader.class.getResourceAsStream("KDFCTR_gen.rsp");
        final Reader reader = new InputStreamReader(stream, Charset.forName("UTF-8"));
        cavpReader.setInput("KDFCounter", reader);

        try
        {
            cavpReader.readAll();
        }
        catch (IOException e)
        {
            throw new IllegalStateException("Something is rotten in the state of Denmark", e);
        }
    }

    public String getName()
    {
        return this.getClass().getSimpleName();
    }

    public void performTest()
        throws Exception
    {
        testCounter();
    }

    public static void main(String[] args)
    {
        runTest(new KDFCounterGeneratorTest());
    }
}