Page MenuHomeFreeBSD

D19977.id56411.diff
No OneTemporary

D19977.id56411.diff

Index: tests/sys/opencrypto/cryptotest.py
===================================================================
--- tests/sys/opencrypto/cryptotest.py
+++ tests/sys/opencrypto/cryptotest.py
@@ -59,17 +59,17 @@
###############
##### AES #####
###############
- @unittest.skipIf(cname not in aesmodules, 'skipping AES on %s' % (cname))
+ @unittest.skipIf(cname not in aesmodules, 'skipping AES-XTS on %s' % (cname))
def test_xts(self):
for i in katg('XTSTestVectors/format tweak value input - data unit seq no', '*.rsp'):
self.runXTS(i, cryptodev.CRYPTO_AES_XTS)
- @unittest.skipIf(cname not in aesmodules, 'skipping AES on %s' % (cname))
+ @unittest.skipIf(cname not in aesmodules, 'skipping AES-CBC on %s' % (cname))
def test_cbc(self):
for i in katg('KAT_AES', 'CBC[GKV]*.rsp'):
self.runCBC(i)
- @unittest.skipIf(cname not in aesmodules, 'skipping AES on %s' % (cname))
+ @unittest.skipIf(cname not in aesmodules, 'skipping AES-GCM on %s' % (cname))
def test_gcm(self):
for i in katg('gcmtestvectors', 'gcmEncrypt*'):
self.runGCM(i, 'ENCRYPT')
@@ -308,7 +308,7 @@
self.assertEqual(r, md, "Actual: " + \
repr(r.encode("hex")) + " Expected: " + repr(data) + " on " + cname)
- @unittest.skipIf(cname not in shamodules, 'skipping SHA on %s' % str(cname))
+ @unittest.skipIf(cname not in shamodules, 'skipping SHA-HMAC on %s' % str(cname))
def test_sha1hmac(self):
for i in katg('hmactestvectors', 'HMAC.rsp'):
self.runSHA1HMAC(i)

File Metadata

Mime Type
text/plain
Expires
Fri, Jun 26, 4:45 AM (3 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34341954
Default Alt Text
D19977.id56411.diff (1 KB)

Event Timeline