]>
git.saurik.com Git - apple/security.git/blob - AppleCSP/open_ssl/bn/bnspeed.c
2 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
21 /* crypto/bn/bnspeed.c */
22 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
23 * All rights reserved.
25 * This package is an SSL implementation written
26 * by Eric Young (eay@cryptsoft.com).
27 * The implementation was written so as to conform with Netscapes SSL.
29 * This library is free for commercial and non-commercial use as long as
30 * the following conditions are aheared to. The following conditions
31 * apply to all code found in this distribution, be it the RC4, RSA,
32 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
33 * included with this distribution is covered by the same copyright terms
34 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
36 * Copyright remains Eric Young's, and as such any Copyright notices in
37 * the code are not to be removed.
38 * If this package is used in a product, Eric Young should be given attribution
39 * as the author of the parts of the library used.
40 * This can be in the form of a textual message at program startup or
41 * in documentation (online or textual) provided with the package.
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * "This product includes cryptographic software written by
54 * Eric Young (eay@cryptsoft.com)"
55 * The word 'cryptographic' can be left out if the rouines from the library
56 * being used are not cryptographic related :-).
57 * 4. If you include any Windows specific code (or a derivative thereof) from
58 * the apps directory (application code) you must include an acknowledgement:
59 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
61 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
62 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
63 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
64 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
65 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
66 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
67 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
68 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
69 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
70 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 * The licence and distribution terms for any publically available version or
74 * derivative of this code cannot be changed. i.e. this code cannot simply be
75 * copied and put under another distribution licence
76 * [including the GNU Public Licence.]
79 /* most of this code has been pilfered from my libdes speed.c program */
81 #define BASENUM 1000000
83 #define PROG bnspeed_main
89 #include <openssl/crypto.h>
90 #include <openssl/err.h>
92 #if !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
100 #include <sys/types.h>
101 #include <sys/times.h>
104 /* Depending on the VMS version, the tms structure is perhaps defined.
105 The __TMS macro will show if it was. If it wasn't defined, we should
106 undefine TIMES, since that tells the rest of the program how things
107 should be handled. -- Richard Levitte */
108 #if defined(VMS) && defined(__DECC) && !defined(__TMS)
113 #include <sys/timeb.h>
116 #if defined(sun) || defined(__ultrix)
117 #define _POSIX_SOURCE
119 #include <sys/param.h>
122 #include <openssl/bn.h>
123 #include <openssl/x509.h>
125 /* The following if from times(3) man page. It may need to be changed */
128 # ifndef _BSD_CLK_TCK_ /* FreeBSD hack */
130 # else /* _BSD_CLK_TCK_ */
131 # define HZ ((double)_BSD_CLK_TCK_)
134 # define HZ ((double)CLK_TCK)
139 #define BUFSIZE ((long)1024*8)
142 static double Time_F(int s
);
146 static double Time_F(int s
)
150 static struct tms tstart
,tend
;
160 ret
=((double)(tend
.tms_utime
-tstart
.tms_utime
))/HZ
;
161 return((ret
< 1e-3)?1e-3:ret
);
164 static struct timeb tstart
,tend
;
175 i
=(long)tend
.millitm
-(long)tstart
.millitm
;
176 ret
=((double)(tend
.time
-tstart
.time
))+((double)i
)/1000.0;
177 return((ret
< 0.001)?0.001:ret
);
183 static int sizes
[NUM_SIZES
]={128,256,512,1024,2048};
184 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
186 void do_mul(BIGNUM
*r
,BIGNUM
*a
,BIGNUM
*b
,BN_CTX
*ctx
);
188 int main(int argc
, char **argv
)
198 do_mul(&a
,&b
,&c
,ctx
);
201 void do_mul(BIGNUM
*r
, BIGNUM
*a
, BIGNUM
*b
, BN_CTX
*ctx
)
207 for (i
=0; i
<NUM_SIZES
; i
++)
211 BN_rand(a
,sizes
[i
],1,0);
212 for (j
=i
; j
<NUM_SIZES
; j
++)
214 BN_rand(b
,sizes
[j
],1,0);
216 for (k
=0; k
<num
; k
++)
219 printf("mul %4d x %4d -> %8.3fms\n",sizes
[i
],sizes
[j
],tm
*1000.0/num
);
223 for (i
=0; i
<NUM_SIZES
; i
++)
227 BN_rand(a
,sizes
[i
],1,0);
229 for (k
=0; k
<num
; k
++)
232 printf("sqr %4d x %4d -> %8.3fms\n",sizes
[i
],sizes
[i
],tm
*1000.0/num
);
235 for (i
=0; i
<NUM_SIZES
; i
++)
239 BN_rand(a
,sizes
[i
]-1,1,0);
240 for (j
=i
; j
<NUM_SIZES
; j
++)
242 BN_rand(b
,sizes
[j
],1,0);
244 for (k
=0; k
<100000; k
++)
245 BN_div(r
, NULL
, b
, a
,ctx
);
247 printf("div %4d / %4d -> %8.3fms\n",sizes
[j
],sizes
[i
]-1,tm
*1000.0/num
);