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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
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 201 public static native void EC_GROUP_set_generator(long groupCtx, long pointCtx, byte[] n, byte[] h);
203 public static native long EC_GROUP_get_generator(long groupCtx);
205 public static native int get_EC_GROUP_type(long groupCtx);
207 public static native byte[] EC_GROUP_get_order(long groupCtx);
209 public static native int EC_GROUP_get_degree(long groupCtx);
211 public static native byte[] EC_GROUP_get_cofactor(long groupCtx);
219 public static native byte[][] EC_POINT_get_affine_coordinates(long groupCtx, long pointCtx);
221 public static native void EC_POINT_set_affine_coordinates(long groupCtx, long pointCtx, byte[] x,
    [all...]

Completed in 38 milliseconds