Pairing implementation.
More...
#include <limits.h>
#include "epid/common/math/pairing.h"
#include "epid/common/math/bignum-internal.h"
#include "epid/common/math/finitefield-internal.h"
#include "epid/common/math/ecgroup-internal.h"
#include "epid/common/math/pairing-internal.h"
#include "epid/common/memory.h"
#include "ext/ipp/include/ippcp.h"
#include "ext/ipp/include/ippcpepid.h"
#define BREAK_ON_EPID_ERROR |
( |
|
ret | ) |
|
Value: break; \
}
no error
Definition: errors.h:41
Handle SDK Error with Break.
#define BREAK_ON_IPP_ERROR |
( |
|
sts, |
|
|
|
ret |
|
) |
| |
Value:{ \
IppStatus temp_sts = (sts); \
if (ippStsNoErr != temp_sts) { \
if (ippStsContextMatchErr == temp_sts) { \
} else { \
} \
break; \
} \
}
internal math error
Definition: errors.h:53
incorrect arg to function
Definition: errors.h:50
Handle Ipp Errors with Break.
#define RETURN_ON_IPP_ERROR |
( |
|
sts | ) |
|
Value:{ \
IppStatus temp_sts = (sts); \
if (ippStsNoErr != temp_sts) { \
if (ippStsContextMatchErr == temp_sts) { \
} else { \
} \
} \
}
internal math error
Definition: errors.h:53
incorrect arg to function
Definition: errors.h:50
Handle Ipp Errors with Return.