GFpECVerify¶
Verifies the parameters of an elliptic curve.
Syntax¶
IppStatus ippsGFpECVerify(IppECResult* pResult, IppsGFpECState* pEC, Ipp8u* pScratchBuffer);
Include Files¶
ippcp.h
Parameters¶
pResult |
Pointer to the verification result. |
pEC |
Pointer to the context of the elliptic curve. |
pScratchBuffer |
Pointer to the scratch buffer. |
Description¶
This function verifies the parameters of the elliptic curve from the
input IppsGFpECState
context and returns the result in pResult
. The
result of the verification may have the following values:
ippECValid |
Parameters are valid. |
ippECIsZeroDiscriminant |
|
ippECPointIsAtInfinity |
Base point |
ippECPointIsNotValid |
Base point |
ippECInvalidOrder |
Order of the base point |
If the pointer to the scratch buffer is NULL, the function uses a short internal buffer for computations.
Return Values¶
ippStsNoErr |
Indicates no error. Any other value indicates an error or warning. |
ippStsNullPtrErr |
Indicates an error condition if any of the specified pointers is NULL. |
ippStsContextMatchErr |
Indicates an error condition if the IppsGFpECState context parameter does not match the operation. |