#include <openssl/err.h>
#include "ec_lcl.h"
Go to the source code of this file.
Creates a new EC_GROUP object with the specified parameters defined over GF2m (defined by the equation y^2 + x*y = x^3 + a*x^2 + b)
- Parameters
-
p | BIGNUM with the polynomial defining the underlying field |
a | BIGNUM with the parameter a of the equation |
b | BIGNUM with the parameter b of the equation |
ctx | BN_CTX object (optional) |
- Returns
- newly created EC_GROUP object with the specified parameters
Definition at line 151 of file ec_cvt.c.
Creates a new EC_GROUP object with the specified parameters defined over GFp (defined by the equation y^2 = x^3 + a*x + b)
- Parameters
-
p | BIGNUM with the prime number |
a | BIGNUM with the parameter a of the equation |
b | BIGNUM with the parameter b of the equation |
ctx | BN_CTX object (optional) |
- Returns
- newly created EC_GROUP object with the specified parameters
Definition at line 76 of file ec_cvt.c.