summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/prng/test/X931TestVector.java
blob: ce57a96539f81eb196cb0d46c0df9498ed89684c (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
52
53
54
55
56
package org.bouncycastle.crypto.prng.test;

import org.bouncycastle.crypto.BlockCipher;
import org.bouncycastle.crypto.prng.EntropySourceProvider;

public class X931TestVector
{
    private final BlockCipher engine;
    private final EntropySourceProvider entropyProvider;
    private final String key;
    private final String dateTimeVector;
    private final boolean predictionResistant;
    private final String[] expected;

    public X931TestVector(BlockCipher engine, EntropySourceProvider entropyProvider, String key, String dateTimeVector, boolean predictionResistant, String[] expected)
    {
        this.engine = engine;
        this.entropyProvider = entropyProvider;
        this.key = key;


        this.dateTimeVector = dateTimeVector;
        this.predictionResistant = predictionResistant;
        this.expected = expected;
    }

    public String getDateTimeVector()
    {
        return dateTimeVector;
    }

    public BlockCipher getEngine()
    {
        return engine;
    }

    public EntropySourceProvider getEntropyProvider()
    {
        return entropyProvider;
    }

    public String[] getExpected()
    {
        return expected;
    }

    public String getKey()
    {
        return key;
    }

    public boolean isPredictionResistant()
    {
        return predictionResistant;
    }
}