summaryrefslogtreecommitdiffstats
path: root/crypto/bn/exp.c
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-02-27 12:17:40 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-02-27 12:17:40 +0000
commit74d7abc2ab54e725f7cfbc2fa7bad95f93e4dc63 (patch)
treef61e38dc0ebc1355bef750e0dd56f011587eaf1a /crypto/bn/exp.c
parentc707fb2741b34018de6bdf2e45cba4b4b6ab38c0 (diff)
Get rid of remaining C++-style comments which strict C compilers hate.
(Pointed out by Carlos Amengual).
Diffstat (limited to 'crypto/bn/exp.c')
-rw-r--r--crypto/bn/exp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/bn/exp.c b/crypto/bn/exp.c
index 6a24fee749..dd49d967a4 100644
--- a/crypto/bn/exp.c
+++ b/crypto/bn/exp.c
@@ -43,12 +43,12 @@ char *argv[];
ms_time_get(start);
for (i=0; i<num; i++)
{
- //bn_mull(&r,&a,&b,&ctx);
- //BN_sqr(&r,&a,&ctx);
+ /* bn_mull(&r,&a,&b,&ctx); */
+ /* BN_sqr(&r,&a,&ctx); */
BN_mod_exp_mont(&r,&a,&b,&c,&ctx,&mont);
}
ms_time_get(end);
- d=ms_time_diff(start,end)/* *50/33 /**/;
+ d=ms_time_diff(start,end)/* *50/33 */;
printf("%5d bit:%6.2f %6d %6.4f %4d m_set(%5.4f)\n",size,
d,num,d/num,(int)((d/num)*mod),md/10.0);
num/=8;