summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 02:41:39 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:52:49 +0000
commit9d03aabea3ead1fe6a194297ddffd4a87f89b93c (patch)
tree56b02cbcb14aa69c55fad2d379e3577749743338 /crypto/bn/bn.h
parent117e79dd88d1e208eb0d658d53e395471e7b537e (diff)
More comment changes required for indentOpenSSL_0_9_8-pre-auto-reformat
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index 9cdbd62b63..79ba102994 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -568,7 +568,7 @@ BN_MONT_CTX *BN_MONT_CTX_set_locked(BN_MONT_CTX **pmont, int lock,
#define BN_BLINDING_NO_UPDATE 0x00000001
#define BN_BLINDING_NO_RECREATE 0x00000002
-BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, /* const */ BIGNUM *mod);
+BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod);
void BN_BLINDING_free(BN_BLINDING *b);
int BN_BLINDING_update(BN_BLINDING *b,BN_CTX *ctx);
int BN_BLINDING_convert(BIGNUM *n, BN_BLINDING *b, BN_CTX *ctx);
@@ -580,7 +580,7 @@ void BN_BLINDING_set_thread_id(BN_BLINDING *, unsigned long);
unsigned long BN_BLINDING_get_flags(const BN_BLINDING *);
void BN_BLINDING_set_flags(BN_BLINDING *, unsigned long);
BN_BLINDING *BN_BLINDING_create_param(BN_BLINDING *b,
- const BIGNUM *e, /* const */ BIGNUM *m, BN_CTX *ctx,
+ const BIGNUM *e, BIGNUM *m, BN_CTX *ctx,
int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx),
BN_MONT_CTX *m_ctx);