aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/sys/opencrypto/cryptotest.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/sys/opencrypto/cryptotest.py b/tests/sys/opencrypto/cryptotest.py
index 0281808d7dcc..d21e7ebc2d26 100644
--- a/tests/sys/opencrypto/cryptotest.py
+++ b/tests/sys/opencrypto/cryptotest.py
@@ -249,29 +249,29 @@ def GenTestCase(cname):
blocksize = None
if hashlen == 20:
- alg = cryptodev.CRYPTO_SHA1_HMAC
- blocksize = 64
+ alg = cryptodev.CRYPTO_SHA1_HMAC
+ blocksize = 64
elif hashlen == 28:
- # Cryptodev doesn't support SHA-224
- # Slurp remaining input in section
- for data in lines:
+ # Cryptodev doesn't support SHA-224
+ # Slurp remaining input in section
+ for data in lines:
+ continue
continue
- continue
elif hashlen == 32:
- alg = cryptodev.CRYPTO_SHA2_256_HMAC
- blocksize = 64
+ alg = cryptodev.CRYPTO_SHA2_256_HMAC
+ blocksize = 64
elif hashlen == 48:
- alg = cryptodev.CRYPTO_SHA2_384_HMAC
- blocksize = 128
+ alg = cryptodev.CRYPTO_SHA2_384_HMAC
+ blocksize = 128
elif hashlen == 64:
- alg = cryptodev.CRYPTO_SHA2_512_HMAC
- blocksize = 128
+ alg = cryptodev.CRYPTO_SHA2_512_HMAC
+ blocksize = 128
else:
- # Skip unsupported hashes
- # Slurp remaining input in section
- for data in lines:
+ # Skip unsupported hashes
+ # Slurp remaining input in section
+ for data in lines:
+ continue
continue
- continue
for data in lines:
key = data['Key'].decode('hex')