aboutsummaryrefslogtreecommitdiff
path: root/src/testgenerator/src/org/crypttech/modexp/testgenerator/TestVector.java
blob: a9931c170e92c0022802795fa34d410b9fe2f13e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.crypttech.modexp.testgenerator;

public class TestVector {
	public final String generator; 
	public final String seed; 
	public final int length; 
	public final int[] X; 
	public final int[] E; 
	public final int[] M; 
	public final int[] expected;
	
	public TestVector(String generator, String seed, int length, int[] x,
			int[] e, int[] m, int[] expected) {
		super();
		this.generator = generator;
		this.seed = seed;
		this.length = length;
		X = x;
		E = e;
		M = m;
		this.expected = expected;
	}
}