From 09076f8cacc482317ac88953aaa0265d2a2526ee Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Mon, 19 Dec 2016 23:37:17 +0100 Subject: Fix typo in test --- tests/test_encryption.doctest | 8 ++++---- 1 file 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' -- cgit v1.2.3