summaryrefslogtreecommitdiff
path: root/usr/src/common/mpi/mpmontg.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/common/mpi/mpmontg.c')
-rw-r--r--usr/src/common/mpi/mpmontg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/common/mpi/mpmontg.c b/usr/src/common/mpi/mpmontg.c
index 33aea8b0d6..150bd2d37f 100644
--- a/usr/src/common/mpi/mpmontg.c
+++ b/usr/src/common/mpi/mpmontg.c
@@ -40,11 +40,11 @@
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
+ * Copyright 2017 RackTop Systems.
+ *
* Sun elects to use this software under the MPL license.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/* $Id: mpmontg.c,v 1.20 2006/08/29 02:41:38 nelson%bolyard.com Exp $ */
/* This file implements moduluar exponentiation using Montgomery's
@@ -104,7 +104,7 @@ mp_err s_mp_redc(mp_int *T, mp_mont_modulus *mmm)
for (i = 0; i < MP_USED(&mmm->N); ++i ) {
mp_digit m_i = MP_DIGIT(T, i) * mmm->n0prime;
/* T += N * m_i * (MP_RADIX ** i); */
- MP_CHECKOK( s_mp_mul_d_add_offset(&mmm->N, m_i, T, i) );
+ s_mp_mul_d_add_offset(&mmm->N, m_i, T, i);
}
s_mp_clamp(T);