Computes integer multiplication of an integer and an elliptic curve point.
#include "hueccalc.h"
int hu_ECCalcIntMult(sb_Params eccParams, sb_ECCalcOrderInt multInt, sb_ECCalcECPoint point, sb_ECCalcECPoint resultPoint, sb_GlobalCtx sbCtx)
BlackBerry 10.0.0
ECC parameters object.
The multiplying integer.
The point.
The result point.
A global context.
If the input point is NULL, the generating point is used.
resultPoint = multInt * point
Input and output elliptic curve point objects can be the same.
ECC parameters object is NULL.
ECC parameters object is invalid.
The point order integer object is NULL.
The point order integer object is invalid.
The elliptic curve point object is NULL.
The elliptic curve point object is invalid.
Memory allocation failure.
Operation failed.
Operation resulted in point at infinity (caller to interpret as error or not).
Success.