diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /third_party/python/rsa/create_timing_table.py | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/rsa/create_timing_table.py')
-rwxr-xr-x | third_party/python/rsa/create_timing_table.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/third_party/python/rsa/create_timing_table.py b/third_party/python/rsa/create_timing_table.py new file mode 100755 index 0000000000..b1b2871b3d --- /dev/null +++ b/third_party/python/rsa/create_timing_table.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python + +import time +import rsa + +poolsize = 8 +accurate = True + +def run_speed_test(bitsize): + + iterations = 0 + start = end = time.time() + + # At least a number of iterations, and at least 2 seconds + while iterations < 10 or end - start < 2: + iterations += 1 + rsa.newkeys(bitsize, accurate=accurate, poolsize=poolsize) + end = time.time() + + duration = end - start + dur_per_call = duration / iterations + + print '%5i bit: %9.3f sec. (%i iterations over %.1f seconds)' % (bitsize, + dur_per_call, iterations, duration) + +for bitsize in (128, 256, 384, 512, 1024, 2048, 3072, 4096): + run_speed_test(bitsize) + + |