Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942889a commit 04960a2Copy full SHA for 04960a2
1 file changed
Lib/test/test_socket.py
@@ -5372,6 +5372,7 @@ def test_hmac_sha1(self):
5372
op.sendall(b"what do ya want for nothing?")
5373
self.assertEqual(op.recv(512), expected)
5374
5375
+ @support.requires_linux_version(3, 19)
5376
def test_aes_cbc(self):
5377
key = bytes.fromhex('06a9214036b8a15b512e03d534120006')
5378
iv = bytes.fromhex('3dafba429d9eb430b422da802c9fac41')
@@ -5476,6 +5477,7 @@ def test_aead_aes_gcm(self):
5476
5477
res = op.recv(len(msg))
5478
self.assertEqual(plain, res[assoclen:-taglen])
5479
5480
5481
def test_drbg_pr_sha256(self):
5482
# deterministic random bit generator, prediction resistance, sha256
5483
with self.create_alg('rng', 'drbg_pr_sha256') as algo:
0 commit comments