Searched refs:CHECK_MPI_OK (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/common/crypto/ecc/ |
H A D | ec.c | 150 CHECK_MPI_OK( mp_init(&Px, kmflag) ); in ec_points_mul() 151 CHECK_MPI_OK( mp_init(&Py, kmflag) ); in ec_points_mul() 152 CHECK_MPI_OK( mp_init(&Qx, kmflag) ); in ec_points_mul() 153 CHECK_MPI_OK( mp_init(&Qy, kmflag) ); in ec_points_mul() 154 CHECK_MPI_OK( mp_init(&Gx, kmflag) ); in ec_points_mul() 155 CHECK_MPI_OK( mp_init(&Gy, kmflag) ); in ec_points_mul() 156 CHECK_MPI_OK( mp_init(&order, kmflag) ); in ec_points_mul() 157 CHECK_MPI_OK( mp_init(&irreducible, kmflag) ); in ec_points_mul() 158 CHECK_MPI_OK( mp_init(&a, kmflag) ); in ec_points_mul() 159 CHECK_MPI_OK( mp_init(&b, kmflag) ); in ec_points_mul() [all …]
|
H A D | ecc_impl.h | 211 #define CHECK_MPI_OK(func) if (MP_OKAY > (err = func)) goto cleanup macro 215 CHECK_MPI_OK(mp_read_unsigned_octets((mp), (it).data, (it).len))
|