summaryrefslogtreecommitdiff
path: root/lib/crypto-backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crypto-backend.h')
-rw-r--r--lib/crypto-backend.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/crypto-backend.h b/lib/crypto-backend.h
index 42f83635e1..f7267c827c 100644
--- a/lib/crypto-backend.h
+++ b/lib/crypto-backend.h
@@ -125,22 +125,22 @@ typedef struct gnutls_crypto_bigint {
int (*bigint_powm) (bigint_t w, const bigint_t b,
const bigint_t e, const bigint_t m);
/* w = a + b mod m */
- bigint_t(*bigint_addm) (bigint_t w, const bigint_t a,
+ int (*bigint_addm) (bigint_t w, const bigint_t a,
const bigint_t b, const bigint_t m);
/* w = a - b mod m */
- bigint_t(*bigint_subm) (bigint_t w, const bigint_t a,
+ int (*bigint_subm) (bigint_t w, const bigint_t a,
const bigint_t b, const bigint_t m);
/* w = a * b mod m */
- bigint_t(*bigint_mulm) (bigint_t w, const bigint_t a,
+ int (*bigint_mulm) (bigint_t w, const bigint_t a,
const bigint_t b, const bigint_t m);
- /* w = a + b */ bigint_t(*bigint_add) (bigint_t w,
+ /* w = a + b */ int (*bigint_add) (bigint_t w,
const bigint_t a,
const bigint_t b);
- /* w = a - b */ bigint_t(*bigint_sub) (bigint_t w,
+ /* w = a - b */ int (*bigint_sub) (bigint_t w,
const bigint_t a,
const bigint_t b);
/* w = a * b */
- bigint_t(*bigint_mul) (bigint_t w, const bigint_t a,
+ int (*bigint_mul) (bigint_t w, const bigint_t a,
const bigint_t b);
/* w = a + b */
int (*bigint_add_ui) (bigint_t w, const bigint_t a,