summaryrefslogtreecommitdiff
path: root/lib/crypto-backend.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 10:41:04 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-26 10:41:04 +0100
commit6ecfee395560a5fd24aa053594640ce74eb8b2d5 (patch)
treef942955a6078dfacc2c534ea9846d3bd66a5ed6c /lib/crypto-backend.h
parent9ffec632a5084b28b6826f624d4fb1cadcf8a435 (diff)
downloadgnutls-6ecfee395560a5fd24aa053594640ce74eb8b2d5.tar.gz
updated prototypes of _gnutls_mpi_sub_ui, _gnutls_mpi_add_ui, _gnutls_mpi_mul_ui
Diffstat (limited to 'lib/crypto-backend.h')
-rw-r--r--lib/crypto-backend.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/crypto-backend.h b/lib/crypto-backend.h
index 7b06e15eab..6627a9f68a 100644
--- a/lib/crypto-backend.h
+++ b/lib/crypto-backend.h
@@ -140,16 +140,16 @@ typedef struct gnutls_crypto_bigint {
const bigint_t a,
const bigint_t b);
/* w = a * b */
- bigint_t(*bigint_mul) (bigint_t w, const bigint_t a,
+ bigint_t(*bigint_mul) (bigint_t w, const bigint_t a,
const bigint_t b);
/* w = a + b */
- bigint_t(*bigint_add_ui) (bigint_t w, const bigint_t a,
+ int (*bigint_add_ui) (bigint_t w, const bigint_t a,
unsigned long b);
/* w = a - b */
- bigint_t(*bigint_sub_ui) (bigint_t w, const bigint_t a,
+ int (*bigint_sub_ui) (bigint_t w, const bigint_t a,
unsigned long b);
/* w = a * b */
- bigint_t(*bigint_mul_ui) (bigint_t w, const bigint_t a,
+ int (*bigint_mul_ui) (bigint_t w, const bigint_t a,
unsigned long b);
/* q = a / b */
bigint_t(*bigint_div) (bigint_t q, const bigint_t a,