()
| 3 | import rabin_miller as rabinMiller, cryptomath_module as cryptoMath |
| 4 | |
| 5 | def main(): |
| 6 | print('Making key files...') |
| 7 | makeKeyFiles('rsa', 1024) |
| 8 | print('Key files generation successful.') |
| 9 | |
| 10 | def generateKey(keySize): |
| 11 | print('Generating prime p...') |
no test coverage detected