diff options
author | Camil Staps | 2015-04-23 13:23:43 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-23 13:23:43 +0200 |
commit | 7e0f6789a8187ca8c691e4211b91eb16e5588203 (patch) | |
tree | 2939cf5c2b68546b6688b34a24aa88990edb6aa6 /test-vectors.py | |
parent | Timing; generate roundkeys on initialisation (diff) |
Performance
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 |