HomeSort by relevance Sort by last modified time
    Searched refs:groupCtx (Results 1 - 2 of 2) sorted by null

  /external/conscrypt/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 233 public static native void EC_GROUP_set_generator(long groupCtx, long pointCtx, byte[] n, byte[] h);
235 public static native long EC_GROUP_get_generator(long groupCtx);
237 public static native int get_EC_GROUP_type(long groupCtx);
239 public static native byte[] EC_GROUP_get_order(long groupCtx);
241 public static native int EC_GROUP_get_degree(long groupCtx);
243 public static native byte[] EC_GROUP_get_cofactor(long groupCtx);
251 public static native byte[][] EC_POINT_get_affine_coordinates(long groupCtx, long pointCtx);
253 public static native void EC_POINT_set_affine_coordinates(long groupCtx, long pointCtx, byte[] x,
    [all...]

Completed in 456 milliseconds