blob: 78db00e36c235c883d603ba0f71fdb3d62128e81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cz.crcs.ectester.standalone.libs;
import java.security.Provider;
import java.util.Set;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class TomcryptLib extends NativeECLibrary {
public TomcryptLib() {
super("tomcrypt_provider", "tommath", "tomcrypt");
}
@Override
native Provider createProvider();
@Override
public native Set<String> getCurves();
}
|