Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_encryption.doctest8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_encryption.doctest b/tests/test_encryption.doctest
index 2819256..fa567ef 100644
--- a/tests/test_encryption.doctest
+++ b/tests/test_encryption.doctest
@@ -160,11 +160,11 @@ Test decryption with tripledes-cbc and a specified IV.
>>> iv = a2b_hex('1010101010101010')
>>> key = a2b_hex('12345678901234567890123456789012')
->>> cyphertext = encrypt('#tripledes-cbc', key, b'FOOBAR', iv)
->>> cyphertext = cyphertext[8:] # strip IV
->>> tostr(decrypt('#tripledes-cbc', key, cyphertext, iv))
+>>> ciphertext = encrypt('#tripledes-cbc', key, b'FOOBAR', iv)
+>>> ciphertext = ciphertext[8:] # strip IV
+>>> tostr(decrypt('#tripledes-cbc', key, ciphertext, iv))
'FOOBAR'
->>> tostr(decrypt('#tripledes-cbc', key, iv + cyphertext))
+>>> tostr(decrypt('#tripledes-cbc', key, iv + ciphertext))
'FOOBAR'