Searched refs:crv_len (Results 1 - 3 of 3) sorted by relevance

/external/openssl/apps/
H A Decparam.c346 size_t crv_len = 0; local
349 crv_len = EC_get_builtin_curves(NULL, 0);
351 curves = OPENSSL_malloc((int)(sizeof(EC_builtin_curve) * crv_len));
356 if (!EC_get_builtin_curves(curves, crv_len))
363 for (n = 0; n < crv_len; n++)
/external/openssl/crypto/ecdsa/
H A Decdsatest.c287 size_t crv_len = 0, n = 0; local
313 crv_len = EC_get_builtin_curves(NULL, 0);
315 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
323 if (!EC_get_builtin_curves(curves, crv_len))
330 for (n = 0; n < crv_len; n++)
/external/openssl/crypto/ec/
H A Dectest.c1256 size_t crv_len = 0, n = 0; local
1259 crv_len = EC_get_builtin_curves(NULL, 0);
1261 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
1266 if (!EC_get_builtin_curves(curves, crv_len))
1274 for (n = 0; n < crv_len; n++)

Completed in 159 milliseconds