blob: ef20f97f8673e723ae0491f09fbec513e780c5b7 (
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
|
package cz.crcs.ectester.standalone.libs;
import java.security.Provider;
import java.util.Set;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class GcryptLib extends NativeECLibrary {
public GcryptLib() {
super("gcrypt_provider", "gcrypt", "gpg-error");
}
@Override
public native boolean supportsNativeTiming();
@Override
public native long getNativeTimingResolution();
@Override
public native long getLastNativeTiming();
@Override
native Provider createProvider();
@Override
public native Set<String> getCurves();
}
|