Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F160504710
D19977.id56411.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D19977.id56411.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D19977: Use more descriptive algorithm names in skip messages.
Attached
Detach File
Event Timeline
Log In to Comment