Lines Matching refs:counter
63 BIGNUM *counter;
76 ASN1_SIMPLE(int_dhvparams, counter, BIGNUM)
118 /* The counter has a maximum value of 4 * numbits(p) - 1 */
119 size_t counter = (size_t)BN_get_word(dhx->vparams->counter);
122 counter);
124 BN_free(dhx->vparams->counter);
143 int counter;
148 ossl_ffc_params_get_validate_params(params, &seed.data, &seedlen, &counter);
151 if (counter != -1 && seed.data != NULL && seed.length > 0) {
154 dhv.counter = BN_new();
155 if (dhv.counter == NULL)
157 if (!BN_set_word(dhv.counter, (BN_ULONG)counter))
165 BN_free(dhv.counter);