X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Fdh%2Fdh_key.c;h=5ee38e3a876f7864a690329bf63ace64a55b10ff;hb=0d4fb8439092ff8253af72ac6bc193e77ebbcf2f;hp=fcb851c0dde57c379831f2104ee23679b1c9d208;hpb=349807608f31b20af01a342d0072bb92e0b036e2;p=openssl.git diff --git a/crypto/dh/dh_key.c b/crypto/dh/dh_key.c index fcb851c0dd..5ee38e3a87 100644 --- a/crypto/dh/dh_key.c +++ b/crypto/dh/dh_key.c @@ -257,7 +257,7 @@ static int dh_bn_mod_exp(const DH *dh, BIGNUM *r, { /* * If a is only one word long and constant time is false, use the faster - * exponenentiation function. + * exponentiation function. */ if (bn_get_top(a) == 1 && ((dh->flags & DH_FLAG_NO_EXP_CONSTTIME) != 0)) { BN_ULONG A = bn_get_words(a)[0];