(original) (raw)

changeset: 103086:4ebe3ade6922 user: Christian Heimes christian@python.org date: Tue Sep 06 00:58:47 2016 +0200 files: Lib/test/test_socket.py description: Issue 27744: AES-CBC and DRBG need Kernel 3.19+ diff -r 99818330b4c0 -r 4ebe3ade6922 Lib/test/test_socket.py --- a/Lib/test/test_socket.py Mon Sep 05 15:40:10 2016 -0700 +++ b/Lib/test/test_socket.py Tue Sep 06 00:58:47 2016 +0200 @@ -5372,6 +5372,7 @@ op.sendall(b"what do ya want for nothing?") self.assertEqual(op.recv(512), expected) + @support.requires_linux_version(3, 19) def test_aes_cbc(self): key = bytes.fromhex('06a9214036b8a15b512e03d534120006') iv = bytes.fromhex('3dafba429d9eb430b422da802c9fac41') @@ -5476,6 +5477,7 @@ res = op.recv(len(msg)) self.assertEqual(plain, res[assoclen:-taglen]) + @support.requires_linux_version(3, 19) def test_drbg_pr_sha256(self): # deterministic random bit generator, prediction resistance, sha256 with self.create_alg('rng', 'drbg_pr_sha256') as algo: /christian@python.org