From 1526675217d3de95f7ffbc6681bc5e300277bcb8 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 7 Apr 2023 23:03:32 +0000 Subject: bn_mont: fix typo in comment divisable -> divisible --- src/lib/libcrypto/bn/bn_mont.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/bn/bn_mont.c b/src/lib/libcrypto/bn/bn_mont.c index 4b904c876a..b327b89792 100644 --- a/src/lib/libcrypto/bn/bn_mont.c +++ b/src/lib/libcrypto/bn/bn_mont.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mont.c,v 1.55 2023/03/27 10:25:02 tb Exp $ */ +/* $OpenBSD: bn_mont.c,v 1.56 2023/04/07 23:03:32 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -518,7 +518,7 @@ bn_montgomery_reduce(BIGNUM *r, BIGNUM *a, BN_MONT_CTX *mctx) carry = 0; n0 = mctx->n0[0]; - /* Add multiples of the modulus, so that it becomes divisable by R. */ + /* Add multiples of the modulus, so that it becomes divisible by R. */ for (i = 0; i < n_len; i++) { v = bn_mul_add_words(&a->d[i], n->d, n_len, a->d[i] * n0); bn_addw_addw(v, a->d[i + n_len], carry, &carry, -- cgit v1.2.3-55-g6feb