OLD | NEW |
1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 #include <stdio.h> | 6 #include <stdio.h> |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include "file_keys.h" | 9 #include "file_keys.h" |
10 #include "padding.h" | 10 #include "padding.h" |
11 #include "rsa.h" | 11 #include "rsa.h" |
12 #include "timer_utils.h" | 12 #include "timer_utils.h" |
13 #include "utility.h" | 13 #include "utility.h" |
14 | 14 |
15 #define FILE_NAME_SIZE 128 | 15 #define FILE_NAME_SIZE 128 |
16 #define NUM_OPERATIONS 100 /* Number of signature operations to time. */ | 16 #define NUM_OPERATIONS 100 /* Number of signature operations to time. */ |
17 | 17 |
18 int SpeedTestAlgorithm(int algorithm) { | 18 int SpeedTestAlgorithm(int algorithm) { |
19 int i, key_size; | 19 int i, key_size; |
20 int error_code = 0; | 20 int error_code = 0; |
21 double speed, msecs; | 21 double speed, msecs; |
22 char file_name[FILE_NAME_SIZE]; | 22 char file_name[FILE_NAME_SIZE]; |
23 uint8_t* digest = NULL; | 23 uint8_t* digest = NULL; |
24 uint8_t* signature = NULL; | 24 uint8_t* signature = NULL; |
25 uint32_t digest_len, sig_len; | 25 uint64_t digest_len, sig_len; |
26 RSAPublicKey* key = NULL; | 26 RSAPublicKey* key = NULL; |
27 ClockTimerState ct; | 27 ClockTimerState ct; |
28 char* sha_strings[] = { /* Maps algorithm->SHA algorithm. */ | 28 char* sha_strings[] = { /* Maps algorithm->SHA algorithm. */ |
29 "sha1", "sha256", "sha512", /* RSA-1024 */ | 29 "sha1", "sha256", "sha512", /* RSA-1024 */ |
30 "sha1", "sha256", "sha512", /* RSA-2048 */ | 30 "sha1", "sha256", "sha512", /* RSA-2048 */ |
31 "sha1", "sha256", "sha512", /* RSA-4096 */ | 31 "sha1", "sha256", "sha512", /* RSA-4096 */ |
32 "sha1", "sha256", "sha512", /* RSA-8192 */ | 32 "sha1", "sha256", "sha512", /* RSA-8192 */ |
33 }; | 33 }; |
34 | 34 |
35 key_size = siglen_map[algorithm] * 8; /* in bits. */ | 35 key_size = siglen_map[algorithm] * 8; /* in bits. */ |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 int main(int argc, char* argv[]) { | 87 int main(int argc, char* argv[]) { |
88 int i; | 88 int i; |
89 int error_code = 0; | 89 int error_code = 0; |
90 for (i = 0; i < kNumAlgorithms; ++i) { | 90 for (i = 0; i < kNumAlgorithms; ++i) { |
91 if(SpeedTestAlgorithm(i)) | 91 if(SpeedTestAlgorithm(i)) |
92 error_code = 1; | 92 error_code = 1; |
93 } | 93 } |
94 return error_code; | 94 return error_code; |
95 } | 95 } |
OLD | NEW |