From 119ab03aea4850297b2a886f067ae74ab3fba86e Mon Sep 17 00:00:00 2001 From: Nicholas Cooper Date: Wed, 29 Jul 2015 21:44:59 -0400 Subject: [PATCH] RT3959: Fix misleading comment Reviewed-by: Matt Caswell --- include/openssl/dh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openssl/dh.h b/include/openssl/dh.h index e0f4b57349..f1de53dffe 100644 --- a/include/openssl/dh.h +++ b/include/openssl/dh.h @@ -142,7 +142,7 @@ struct dh_st { BIGNUM *p; BIGNUM *g; long length; /* optional */ - BIGNUM *pub_key; /* g^x */ + BIGNUM *pub_key; /* g^x % p */ BIGNUM *priv_key; /* x */ int flags; BN_MONT_CTX *method_mont_p; -- 2.34.1