From bc2d623c0e8a8ae33218c61bcd6729aae23ae666 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 19 Jan 2015 12:42:01 +0000 Subject: Fix source where indent will not be able to cope Conflicts: apps/ciphers.c ssl/s3_pkt.c Reviewed-by: Tim Hudson --- crypto/dh/dh.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crypto/dh') 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); -- cgit v1.2.3