Lines Matching defs:order
211 const BIGNUM *order = EC_GROUP_get0_order(group);
213 if (order == NULL) {
218 order)) {
430 const BIGNUM *order;
452 * The order of the large prime subgroup of the curve is our choice for
457 * For padding on export we just use the bit length of the order
461 * required for the internal representation of the order, and we
463 * might temporarily overflow the order length.
465 order = EC_GROUP_get0_order(ecg);
466 if (order == NULL || BN_is_zero(order))
469 fixed_words = bn_get_top(order) + 2;