Lines Matching refs:order
374 BIGNUM *order = BN_new();
378 if (!order)
384 if (!EC_GROUP_get_order(group, order, NULL))
390 ret = BN_num_bits(order);
391 BN_free(order);
434 BIGNUM *pub_key=NULL, *order=NULL;
493 if ((order = BN_new()) == NULL)
495 if (!EC_GROUP_get_order(group, order, NULL))
498 BN_num_bits(order)) <= 0) goto err;
514 if (order)
515 BN_free(order);