Fixed tfm_fp_mul_2 and tfm_fp_mul_d to handle leading digit correctly.
[crypto.git] / lib / silcmath / mp_tfm.c
index 9424ad97e7618a1e7ef605fe29fef1cce4531148..45a1cd8176a58c3bb39bcbc1f302c698a8811da4 100644 (file)
@@ -293,7 +293,7 @@ SilcBool silc_mp_pow_ui(SilcMPInt *dst, SilcMPInt *mp1, SilcUInt32 exp)
 }
 
 SilcBool silc_mp_pow_mod(SilcMPInt *dst, SilcMPInt *mp1, SilcMPInt *exp,
-                    SilcMPInt *mod)
+                        SilcMPInt *mod)
 {
   int ret;
   if ((ret = tfm_fp_exptmod(mp1, exp, mod, dst))) {