Lines Matching full:order
84 const char *order; /* the order of the group generated by the
1001 * As the group order is not a prime this curve is not suitable
1019 * As the group order is not a prime this curve is not suitable
1128 BIGNUM *p=NULL, *a=NULL, *b=NULL, *x=NULL, *y=NULL, *order=NULL;
1138 (y = BN_new()) == NULL || (order = BN_new()) == NULL)
1184 if (!BN_hex2bn(&order, data->order) || !BN_set_word(x, data->cofactor))
1189 if (!EC_GROUP_set_generator(group, P, order, x))
1219 if (order)
1220 BN_free(order);