summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-19 12:42:01 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:24:04 +0000
commitbc2d623c0e8a8ae33218c61bcd6729aae23ae666 (patch)
tree26753d390c30ad76c63c5424927493f9425af5be /crypto/dh
parentc695ebe2a09cb7f9aaec3c435ab94d36a6d6aece (diff)
Fix source where indent will not be able to cope
Conflicts: apps/ciphers.c ssl/s3_pkt.c Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/dh.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/dh/dh.h b/crypto/dh/dh.h
index 9fa5456544..01d7d10394 100644
--- a/crypto/dh/dh.h
+++ b/crypto/dh/dh.h
@@ -115,9 +115,11 @@ struct dh_method
/* Methods here */
int (*generate_key)(DH *dh);
int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);
+
+ /* Can be null */
int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,
const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
- BN_MONT_CTX *m_ctx); /* Can be null */
+ BN_MONT_CTX *m_ctx);
int (*init)(DH *dh);
int (*finish)(DH *dh);