diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_sqr.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_sqr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_sqr.c b/src/lib/libcrypto/bn/bn_sqr.c index fe00c5f69a..75f4f38392 100644 --- a/src/lib/libcrypto/bn/bn_sqr.c +++ b/src/lib/libcrypto/bn/bn_sqr.c | |||
@@ -188,7 +188,7 @@ void bn_sqr_normal(BN_ULONG *r, BN_ULONG *a, int n, BN_ULONG *tmp) | |||
188 | 188 | ||
189 | #ifdef BN_RECURSION | 189 | #ifdef BN_RECURSION |
190 | /* r is 2*n words in size, | 190 | /* r is 2*n words in size, |
191 | * a and b are both n words in size. | 191 | * a and b are both n words in size. (There's not actually a 'b' here ...) |
192 | * n must be a power of 2. | 192 | * n must be a power of 2. |
193 | * We multiply and return the result. | 193 | * We multiply and return the result. |
194 | * t must be 2*n words in size | 194 | * t must be 2*n words in size |