OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:groupCtx
(Results
1 - 2
of
2
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECGroupContext.java
30
private final long
groupCtx
;
32
public OpenSSLECGroupContext(long
groupCtx
) {
33
this.
groupCtx
=
groupCtx
;
85
if (
groupCtx
!= 0) {
86
NativeCrypto.EC_GROUP_clear_free(
groupCtx
);
100
return NativeCrypto.EC_GROUP_cmp(
groupCtx
, other.
groupCtx
);
110
return
groupCtx
;
143
final String curveName = NativeCrypto.EC_GROUP_get_curve_name(
groupCtx
);
[
all
...]
NativeCrypto.java
207
public static native void EC_GROUP_set_generator(long
groupCtx
, long pointCtx, byte[] n, byte[] h);
209
public static native long EC_GROUP_get_generator(long
groupCtx
);
211
public static native int get_EC_GROUP_type(long
groupCtx
);
213
public static native byte[] EC_GROUP_get_order(long
groupCtx
);
215
public static native int EC_GROUP_get_degree(long
groupCtx
);
217
public static native byte[] EC_GROUP_get_cofactor(long
groupCtx
);
225
public static native byte[][] EC_POINT_get_affine_coordinates(long
groupCtx
, long pointCtx);
227
public static native void EC_POINT_set_affine_coordinates(long
groupCtx
, long pointCtx, byte[] x,
[
all
...]
Completed in 27 milliseconds