test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm check
@ 2016-09-18  5:15 Marvin Liu
  2016-09-18  6:03 ` Chen, Zhaoyan
  0 siblings, 1 reply; 3+ messages in thread
From: Marvin Liu @ 2016-09-18  5:15 UTC (permalink / raw)
  To: dts; +Cc: Marvin Liu

Signed-off-by: Marvin Liu <yong.liu@intel.com>

diff --git a/tests/TestSuite_l2fwd_crypto.py b/tests/TestSuite_l2fwd_crypto.py
index 76f60ba..3dd5344 100644
--- a/tests/TestSuite_l2fwd_crypto.py
+++ b/tests/TestSuite_l2fwd_crypto.py
@@ -152,11 +152,21 @@ class TestL2fwdCrypto(TestCase):
                 test_vectors, "qat_h_SHA1_HMAC_01"):
             result = False
 
+        self.logger.info("Test qat_h_SHA224_HMAC_01")
+        if not self.__execute_l2fwd_crypto_test(
+                test_vectors, "qat_h_SHA224_HMAC_01"):
+            result = False
+
         self.logger.info("Test qat_h_SHA256_HMAC_01")
         if not self.__execute_l2fwd_crypto_test(
                 test_vectors, "qat_h_SHA256_HMAC_01"):
             result = False
 
+        self.logger.info("Test qat_h_SHA384_HMAC_01")
+        if not self.__execute_l2fwd_crypto_test(
+                test_vectors, "qat_h_SHA384_HMAC_01"):
+            result = False
+
         self.logger.info("Test qat_h_SHA512_HMAC_01")
         if not self.__execute_l2fwd_crypto_test(
                 test_vectors, "qat_h_SHA512_HMAC_01"):
@@ -547,6 +557,25 @@ test_vectors = {
         "output_hash": "12E2EF8B7EBFE556C73307B04E1E46D12BA34884"
     },
 
+    "qat_h_SHA224_HMAC_01": {
+        "vdev": "",
+        "chain": "HASH_ONLY",
+        "cdev_type": "ANY",
+        "cipher_algo": "",
+        "cipher_op": "",
+        "cipher_key": "",
+        "iv": "",
+        "auth_algo": "SHA224_HMAC",
+        "auth_op": "GENERATE",
+        "auth_key": "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
+        "auth_key_random_size": "",
+        "aad": "",
+        "aad_random_size": "",
+        "input": "11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000000000000000000000000000000",
+        "output_cipher": "",
+        "output_hash": "45BBF9A798501F225E2C9671863B96BF2DD1C5DAC5DB554A7B9BDB6D"
+    },
+
     "qat_h_SHA256_HMAC_01": {
         "vdev": "",
         "chain": "HASH_ONLY",
@@ -566,6 +595,26 @@ test_vectors = {
         "output_hash": "AC9E0BA3A0716F4F4A2734B407BE28D6F276CE0472B827D6EE47B7E518C2BC0D"
     },
 
+    "qat_h_SHA384_HMAC_01": {
+        "vdev": "",
+        "chain": "HASH_ONLY",
+        "cdev_type": "ANY",
+        "cipher_algo": "",
+        "cipher_op": "",
+        "cipher_key": "",
+        "iv": "",
+        "auth_algo": "SHA384_HMAC",
+        "auth_op": "GENERATE",
+        "auth_key": "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
+        "auth_key_random_size": "",
+        "auth_key_random_size": "",
+        "aad": "",
+        "aad_random_size": "",
+        "input": "11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000000000000000000000000000000",
+        "output_cipher": "",
+        "output_hash": "2CE1BD8F18A93A63AF04C21EDE42EE4D8468C6DFD17474B64D2C36E6CAA9F9D177B424F91DAB8D2D4CAF2AAF63FFAE09"
+    },
+
     "qat_h_SHA512_HMAC_01": {
         "vdev": "",
         "chain": "HASH_ONLY",
-- 
1.9.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm check
  2016-09-18  5:15 [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm check Marvin Liu
@ 2016-09-18  6:03 ` Chen, Zhaoyan
  2016-09-18  6:58   ` Liu, Yong
  0 siblings, 1 reply; 3+ messages in thread
From: Chen, Zhaoyan @ 2016-09-18  6:03 UTC (permalink / raw)
  To: dts


> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Marvin Liu
> Sent: Sunday, September 18, 2016 1:15 PM
> To: dts@dpdk.org
> Cc: Liu, Yong <yong.liu@intel.com>
> Subject: [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm
> check
> 
> Signed-off-by: Marvin Liu <yong.liu@intel.com>
> 
> diff --git a/tests/TestSuite_l2fwd_crypto.py
> b/tests/TestSuite_l2fwd_crypto.py index 76f60ba..3dd5344 100644
> --- a/tests/TestSuite_l2fwd_crypto.py
> +++ b/tests/TestSuite_l2fwd_crypto.py
> @@ -152,11 +152,21 @@ class TestL2fwdCrypto(TestCase):
>                  test_vectors, "qat_h_SHA1_HMAC_01"):
>              result = False
> 
> +        self.logger.info("Test qat_h_SHA224_HMAC_01")
> +        if not self.__execute_l2fwd_crypto_test(
> +                test_vectors, "qat_h_SHA224_HMAC_01"):
> +            result = False
> +
>          self.logger.info("Test qat_h_SHA256_HMAC_01")
>          if not self.__execute_l2fwd_crypto_test(
>                  test_vectors, "qat_h_SHA256_HMAC_01"):
>              result = False
> 
> +        self.logger.info("Test qat_h_SHA384_HMAC_01")
> +        if not self.__execute_l2fwd_crypto_test(
> +                test_vectors, "qat_h_SHA384_HMAC_01"):
> +            result = False
> +
>          self.logger.info("Test qat_h_SHA512_HMAC_01")
>          if not self.__execute_l2fwd_crypto_test(
>                  test_vectors, "qat_h_SHA512_HMAC_01"):
> @@ -547,6 +557,25 @@ test_vectors = {
>          "output_hash": "12E2EF8B7EBFE556C73307B04E1E46D12BA34884"
>      },
> 
> +    "qat_h_SHA224_HMAC_01": {
> +        "vdev": "",
> +        "chain": "HASH_ONLY",
> +        "cdev_type": "ANY",
> +        "cipher_algo": "",
> +        "cipher_op": "",
> +        "cipher_key": "",
> +        "iv": "",
> +        "auth_algo": "SHA224_HMAC",
> +        "auth_op": "GENERATE",
> +        "auth_key":
> "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00
> 0102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
> +        "auth_key_random_size": "",
> +        "aad": "",
> +        "aad_random_size": "",
> +        "input":
> "111111111111111111111111111111111111111111111111111111111111111111
> 11111111111111111111111111111100000000000000000000000000000000",
> +        "output_cipher": "",
> +        "output_hash":
> "45BBF9A798501F225E2C9671863B96BF2DD1C5DAC5DB554A7B9BDB6D"
> +    },
> +
>      "qat_h_SHA256_HMAC_01": {
>          "vdev": "",
>          "chain": "HASH_ONLY",
> @@ -566,6 +595,26 @@ test_vectors = {
>          "output_hash":
> "AC9E0BA3A0716F4F4A2734B407BE28D6F276CE0472B827D6EE47B7E518C2BC0
> D"
>      },
> 
> +    "qat_h_SHA384_HMAC_01": {
> +        "vdev": "",
> +        "chain": "HASH_ONLY",
> +        "cdev_type": "ANY",
> +        "cipher_algo": "",
> +        "cipher_op": "",
> +        "cipher_key": "",
> +        "iv": "",
> +        "auth_algo": "SHA384_HMAC",
> +        "auth_op": "GENERATE",
> +        "auth_key":
> "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00
> 0102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00010
> 2030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00010203
> 0405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
> +        "auth_key_random_size": "",
> +        "auth_key_random_size": "",
> +        "aad": "",
> +        "aad_random_size": "",
> +        "input":
> "111111111111111111111111111111111111111111111111111111111111111111
> 11111111111111111111111111111100000000000000000000000000000000",
> +        "output_cipher": "",
> +        "output_hash":
> "2CE1BD8F18A93A63AF04C21EDE42EE4D8468C6DFD17474B64D2C36E6CAA9F9
> D177B424F91DAB8D2D4CAF2AAF63FFAE09"
> +    },
> +
>      "qat_h_SHA512_HMAC_01": {
>          "vdev": "",
>          "chain": "HASH_ONLY",
> --
> 1.9.3

Acked-by: Zhaoyan Chen <Zhaoyan.chen@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm check
  2016-09-18  6:03 ` Chen, Zhaoyan
@ 2016-09-18  6:58   ` Liu, Yong
  0 siblings, 0 replies; 3+ messages in thread
From: Liu, Yong @ 2016-09-18  6:58 UTC (permalink / raw)
  To: Chen, Zhaoyan, dts

Applied into master branch.

On 09/18/2016 02:03 PM, Chen, Zhaoyan wrote:
>> -----Original Message-----
>> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Marvin Liu
>> Sent: Sunday, September 18, 2016 1:15 PM
>> To: dts@dpdk.org
>> Cc: Liu, Yong <yong.liu@intel.com>
>> Subject: [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm
>> check
>>
>> Signed-off-by: Marvin Liu <yong.liu@intel.com>
>>
>> diff --git a/tests/TestSuite_l2fwd_crypto.py
>> b/tests/TestSuite_l2fwd_crypto.py index 76f60ba..3dd5344 100644
>> --- a/tests/TestSuite_l2fwd_crypto.py
>> +++ b/tests/TestSuite_l2fwd_crypto.py
>> @@ -152,11 +152,21 @@ class TestL2fwdCrypto(TestCase):
>>                   test_vectors, "qat_h_SHA1_HMAC_01"):
>>               result = False
>>
>> +        self.logger.info("Test qat_h_SHA224_HMAC_01")
>> +        if not self.__execute_l2fwd_crypto_test(
>> +                test_vectors, "qat_h_SHA224_HMAC_01"):
>> +            result = False
>> +
>>           self.logger.info("Test qat_h_SHA256_HMAC_01")
>>           if not self.__execute_l2fwd_crypto_test(
>>                   test_vectors, "qat_h_SHA256_HMAC_01"):
>>               result = False
>>
>> +        self.logger.info("Test qat_h_SHA384_HMAC_01")
>> +        if not self.__execute_l2fwd_crypto_test(
>> +                test_vectors, "qat_h_SHA384_HMAC_01"):
>> +            result = False
>> +
>>           self.logger.info("Test qat_h_SHA512_HMAC_01")
>>           if not self.__execute_l2fwd_crypto_test(
>>                   test_vectors, "qat_h_SHA512_HMAC_01"):
>> @@ -547,6 +557,25 @@ test_vectors = {
>>           "output_hash": "12E2EF8B7EBFE556C73307B04E1E46D12BA34884"
>>       },
>>
>> +    "qat_h_SHA224_HMAC_01": {
>> +        "vdev": "",
>> +        "chain": "HASH_ONLY",
>> +        "cdev_type": "ANY",
>> +        "cipher_algo": "",
>> +        "cipher_op": "",
>> +        "cipher_key": "",
>> +        "iv": "",
>> +        "auth_algo": "SHA224_HMAC",
>> +        "auth_op": "GENERATE",
>> +        "auth_key":
>> "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00
>> 0102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
>> +        "auth_key_random_size": "",
>> +        "aad": "",
>> +        "aad_random_size": "",
>> +        "input":
>> "111111111111111111111111111111111111111111111111111111111111111111
>> 11111111111111111111111111111100000000000000000000000000000000",
>> +        "output_cipher": "",
>> +        "output_hash":
>> "45BBF9A798501F225E2C9671863B96BF2DD1C5DAC5DB554A7B9BDB6D"
>> +    },
>> +
>>       "qat_h_SHA256_HMAC_01": {
>>           "vdev": "",
>>           "chain": "HASH_ONLY",
>> @@ -566,6 +595,26 @@ test_vectors = {
>>           "output_hash":
>> "AC9E0BA3A0716F4F4A2734B407BE28D6F276CE0472B827D6EE47B7E518C2BC0
>> D"
>>       },
>>
>> +    "qat_h_SHA384_HMAC_01": {
>> +        "vdev": "",
>> +        "chain": "HASH_ONLY",
>> +        "cdev_type": "ANY",
>> +        "cipher_algo": "",
>> +        "cipher_op": "",
>> +        "cipher_key": "",
>> +        "iv": "",
>> +        "auth_algo": "SHA384_HMAC",
>> +        "auth_op": "GENERATE",
>> +        "auth_key":
>> "000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00
>> 0102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00010
>> 2030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f00010203
>> 0405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f",
>> +        "auth_key_random_size": "",
>> +        "auth_key_random_size": "",
>> +        "aad": "",
>> +        "aad_random_size": "",
>> +        "input":
>> "111111111111111111111111111111111111111111111111111111111111111111
>> 11111111111111111111111111111100000000000000000000000000000000",
>> +        "output_cipher": "",
>> +        "output_hash":
>> "2CE1BD8F18A93A63AF04C21EDE42EE4D8468C6DFD17474B64D2C36E6CAA9F9
>> D177B424F91DAB8D2D4CAF2AAF63FFAE09"
>> +    },
>> +
>>       "qat_h_SHA512_HMAC_01": {
>>           "vdev": "",
>>           "chain": "HASH_ONLY",
>> --
>> 1.9.3
> Acked-by: Zhaoyan Chen <Zhaoyan.chen@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-18  6:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-18  5:15 [dts] [PATCH] tests l2fwd_crypto: add sha224 and sha384 algorithm check Marvin Liu
2016-09-18  6:03 ` Chen, Zhaoyan
2016-09-18  6:58   ` Liu, Yong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).