diff options
Diffstat (limited to 'test-vectors.py')
-rwxr-xr-x | test-vectors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-vectors.py b/test-vectors.py index 2cd75f5..065bb76 100755 --- a/test-vectors.py +++ b/test-vectors.py @@ -54,5 +54,5 @@ for vector in test_vectors: print encryption == vector['ciphertext'].decode('hex'), decryption == vector['plaintext'].decode('hex') print "Generating round keys:", str(time_cipher) + "s" -print "Encryption:", str(time_encrypt) + "s" -print "Decryption:", str(time_decrypt) + "s"
\ No newline at end of file +print "Encryption: ", str(time_encrypt) + "s" +print "Decryption: ", str(time_decrypt) + "s"
\ No newline at end of file |