Added encryption and decryption tests with input test vectors
from Snow3G UEA2 specifications.

Signed-off-by: Deepak Kumar JAIN <deepak.k.jain at intel.com>
---
 app/test/test_cryptodev.c                     | 318 ++++++++++++++++++++++++-
 app/test/test_cryptodev.h                     |   2 +-
 app/test/test_cryptodev_snow3g_test_vectors.h | 323 ++++++++++++++++++++++++++
 3 files changed, 641 insertions(+), 2 deletions(-)
 create mode 100644 app/test/test_cryptodev_snow3g_test_vectors.h

diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c
index fd5b7ec..0809b0f 100644
--- a/app/test/test_cryptodev.c
+++ b/app/test/test_cryptodev.c
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  *
- *   Copyright(c) 2015 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2015-2016 Intel Corporation. All rights reserved.
  *
  *   Redistribution and use in source and binary forms, with or without
  *   modification, are permitted provided that the following conditions
@@ -43,6 +43,7 @@

 #include "test.h"
 #include "test_cryptodev.h"
+#include "test_cryptodev_snow3g_test_vectors.h"

 static enum rte_cryptodev_type gbl_cryptodev_type;

@@ -188,6 +189,23 @@ testsuite_setup(void)
                }
        }

+       /* Create 2 Snow3G devices if required */
+       if (gbl_cryptodev_type == RTE_CRYPTODEV_SNOW3G_PMD) {
+               nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_SNOW3G_PMD);
+               if (nb_devs < 2) {
+                       for (i = nb_devs; i < 2; i++) {
+                               int dev_id =
+                                       
rte_eal_vdev_init(CRYPTODEV_NAME_SNOW3G_PMD,
+                                                     NULL);
+
+                               TEST_ASSERT(dev_id >= 0,
+                                       "Failed to create instance %u of"
+                                       " pmd : %s",
+                                       i, CRYPTODEV_NAME_SNOW3G_PMD);
+                       }
+               }
+       }
+
        nb_devs = rte_cryptodev_count();
        if (nb_devs < 1) {
                RTE_LOG(ERR, USER1, "No crypto devices found?");
@@ -1681,7 +1699,283 @@ test_AES_CBC_HMAC_AES_XCBC_decrypt_digest_verify(void)
        return TEST_SUCCESS;
 }

+/* ***** Snow3G Tests ***** */
+static int
+create_snow3g_cipher_session(uint8_t dev_id,
+                       enum rte_crypto_cipher_operation op,
+                       const uint8_t *key, const uint8_t key_len)
+{
+       uint8_t cipher_key[key_len];
+
+       struct crypto_unittest_params *ut_params = &unittest_params;
+
+       memcpy(cipher_key, key, key_len);
+
+       /* Setup Cipher Parameters */
+       ut_params->cipher_xform.type = RTE_CRYPTO_XFORM_CIPHER;
+       ut_params->cipher_xform.next = NULL;
+
+       ut_params->cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_SNOW3G_UEA2;
+       ut_params->cipher_xform.cipher.op = op;
+       ut_params->cipher_xform.cipher.key.data = cipher_key;
+       ut_params->cipher_xform.cipher.key.length = key_len;
+
+#ifdef RTE_APP_TEST_DEBUG
+       rte_hexdump(stdout, "key:", key, key_len);
+#endif
+       /* Create Crypto session */
+       ut_params->sess = rte_cryptodev_session_create(dev_id,
+                                               &ut_params->
+                                               cipher_xform);
+
+       TEST_ASSERT_NOT_NULL(ut_params->sess, "Session creation failed");
+
+       return 0;
+}
+
+static int
+create_snow3g_cipher_operation(const uint8_t *iv, const unsigned iv_len,
+                       const unsigned data_len)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct crypto_unittest_params *ut_params = &unittest_params;
+
+       unsigned iv_pad_len = 0;
+
+       /* Generate Crypto op data structure */
+       ut_params->ol = rte_pktmbuf_offload_alloc(ts_params->mbuf_ol_pool,
+                                               RTE_PKTMBUF_OL_CRYPTO);
+       TEST_ASSERT_NOT_NULL(ut_params->ol,
+                            "Failed to allocate pktmbuf offload");
+
+       ut_params->op = &ut_params->ol->op.crypto;
+
+       /* iv */
+       iv_pad_len = RTE_ALIGN_CEIL(iv_len, 16);
+
+       ut_params->op->iv.data =
+               (uint8_t *) rte_pktmbuf_prepend(ut_params->ibuf, iv_pad_len);
+       TEST_ASSERT_NOT_NULL(ut_params->op->iv.data, "no room to prepend iv");
+
+       memset(ut_params->op->iv.data, 0, iv_pad_len);
+       ut_params->op->iv.phys_addr = rte_pktmbuf_mtophys(ut_params->ibuf);
+       ut_params->op->iv.length = iv_pad_len;
+
+       rte_memcpy(ut_params->op->iv.data, iv, iv_len);
+
+       rte_hexdump(stdout, "iv:", ut_params->op->iv.data, iv_pad_len);
+       ut_params->op->data.to_cipher.length = data_len;
+       ut_params->op->data.to_cipher.offset = iv_pad_len;
+       return 0;
+}
+
+static int test_snow3g_encryption(const struct snow3g_test_data *tdata)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct crypto_unittest_params *ut_params = &unittest_params;
+
+       int retval;
+
+       uint8_t *plaintext, *ciphertext;
+       uint8_t plaintext_pad_len;
+       uint8_t lastByteValidBits = 8;
+       uint8_t lastByteMask = 0xFF;
+
+       /* Create SNOW3G session */
+       retval = create_snow3g_cipher_session(ts_params->valid_devs[0],
+                                       RTE_CRYPTO_CIPHER_OP_ENCRYPT,
+                                       tdata->key.data, tdata->key.len);
+       if (retval < 0)
+               return retval;
+
+       ut_params->ibuf = rte_pktmbuf_alloc(ts_params->mbuf_pool);
+
+       /* Clear mbuf payload */
+       memset(rte_pktmbuf_mtod(ut_params->ibuf, uint8_t *), 0,
+              rte_pktmbuf_tailroom(ut_params->ibuf));
+
+       /*
+        * Append data which is padded to a
+        * multiple of the algorithms block size
+        */
+       plaintext_pad_len = RTE_ALIGN_CEIL(tdata->plaintext.len, 16);
+
+       plaintext = (uint8_t *) rte_pktmbuf_append(ut_params->ibuf,
+                                               plaintext_pad_len);
+       memcpy(plaintext, tdata->plaintext.data, tdata->plaintext.len);
+
+#ifdef RTE_APP_TEST_DEBUG
+       rte_hexdump(stdout, "plaintext:", plaintext, tdata->plaintext.len);
+#endif
+       /* Create SNOW3G operation */
+       retval = create_snow3g_cipher_operation(tdata->iv.data, tdata->iv.len,
+                                               tdata->plaintext.len);
+       if (retval < 0)
+               return retval;
+
+       rte_crypto_op_attach_session(ut_params->op, ut_params->sess);
+
+       rte_pktmbuf_offload_attach(ut_params->ibuf, ut_params->ol);
+
+       ut_params->obuf = process_crypto_request(ts_params->valid_devs[0],
+                                               ut_params->ibuf);
+       TEST_ASSERT_NOT_NULL(ut_params->obuf, "failed to retrieve obuf");
+
+       if (ut_params->op->dst.m) {
+               ciphertext = rte_pktmbuf_mtod(ut_params->op->dst.m, uint8_t *);
+       } else {
+               ciphertext = plaintext;
+       }
+       lastByteValidBits = (tdata->validDataLenInBits.len % 8);
+       if (lastByteValidBits == 0)
+               lastByteValidBits = 8;
+       lastByteMask = lastByteMask << (8 - lastByteValidBits);
+       (*(ciphertext + tdata->ciphertext.len - 1)) &= lastByteMask;
+
+#ifdef RTE_APP_TEST_DEBUG
+       rte_hexdump(stdout, "ciphertext:", ciphertext, tdata->ciphertext.len);
+#endif
+       /* Validate obuf */
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(ciphertext,
+                               tdata->ciphertext.data,
+                               tdata->ciphertext.len,
+                               "Snow3G Ciphertext data not as expected");
+       return 0;
+}
+
+static int test_snow3g_decryption(const struct snow3g_test_data *tdata)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct crypto_unittest_params *ut_params = &unittest_params;
+
+       int retval;
+
+       uint8_t *plaintext, *ciphertext;
+       uint8_t ciphertext_pad_len;
+       uint8_t lastByteValidBits = 8;
+       uint8_t lastByteMask = 0xFF;
+
+       /* Create SNOW3G session */
+       retval = create_snow3g_cipher_session(ts_params->valid_devs[0],
+                                       RTE_CRYPTO_CIPHER_OP_DECRYPT,
+                                       tdata->key.data, tdata->key.len);
+       if (retval < 0)
+               return retval;
+
+       ut_params->ibuf = rte_pktmbuf_alloc(ts_params->mbuf_pool);
+
+       /* Clear mbuf payload */
+       memset(rte_pktmbuf_mtod(ut_params->ibuf, uint8_t *), 0,
+              rte_pktmbuf_tailroom(ut_params->ibuf));
+
+       /*
+        * Append data which is padded to a
+        * multiple of the algorithms block size
+        */
+       ciphertext_pad_len = RTE_ALIGN_CEIL(tdata->ciphertext.len, 16);
+
+       ciphertext = (uint8_t *) rte_pktmbuf_append(ut_params->ibuf,
+                                               ciphertext_pad_len);
+       memcpy(ciphertext, tdata->ciphertext.data, tdata->ciphertext.len);
+
+#ifdef RTE_APP_TEST_DEBUG
+       rte_hexdump(stdout, "ciphertext:", ciphertext, tdata->ciphertext.len);
+#endif
+       /* Create SNOW3G operation */
+       retval = create_snow3g_cipher_operation(tdata->iv.data, tdata->iv.len,
+                                               tdata->ciphertext.len);
+       if (retval < 0)
+               return retval;
+
+       rte_crypto_op_attach_session(ut_params->op, ut_params->sess);
+
+       rte_pktmbuf_offload_attach(ut_params->ibuf, ut_params->ol);
+
+       ut_params->obuf = process_crypto_request(ts_params->valid_devs[0],
+                                               ut_params->ibuf);
+       TEST_ASSERT_NOT_NULL(ut_params->obuf, "failed to retrieve obuf");
+
+       if (ut_params->op->dst.m) {
+               plaintext = rte_pktmbuf_mtod(ut_params->op->dst.m, uint8_t *);
+       } else {
+               plaintext = ciphertext;
+       }
+       lastByteValidBits = (tdata->validDataLenInBits.len % 8);
+       if (lastByteValidBits == 0)
+               lastByteValidBits = 8;
+       lastByteMask = lastByteMask << (8 - lastByteValidBits);
+       (*(ciphertext + tdata->ciphertext.len - 1)) &= lastByteMask;
+
+#ifdef RTE_APP_TEST_DEBUG
+       rte_hexdump(stdout, "plaintext:", plaintext, tdata->plaintext.len);
+#endif
+       /* Validate obuf */
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(plaintext,
+                               tdata->plaintext.data,
+                               tdata->plaintext.len,
+                               "Snow3G Plaintext data not as expected");
+       return 0;
+}
+
+static int
+test_snow3g_encryption_test_case_1(void)
+{
+       return test_snow3g_encryption(&snow3g_test_case_1);
+}
+
+static int
+test_snow3g_encryption_test_case_2(void)
+{
+       return test_snow3g_encryption(&snow3g_test_case_2);
+}
+
+static int
+test_snow3g_encryption_test_case_3(void)
+{
+       return test_snow3g_encryption(&snow3g_test_case_3);
+}
+
+static int
+test_snow3g_encryption_test_case_4(void)
+{
+       return test_snow3g_encryption(&snow3g_test_case_4);
+}
+
+static int
+test_snow3g_encryption_test_case_5(void)
+{
+       return test_snow3g_encryption(&snow3g_test_case_5);
+}

+static int
+test_snow3g_decryption_test_case_1(void)
+{
+       return test_snow3g_decryption(&snow3g_test_case_1);
+}
+
+static int
+test_snow3g_decryption_test_case_2(void)
+{
+       return test_snow3g_decryption(&snow3g_test_case_2);
+}
+
+static int
+test_snow3g_decryption_test_case_3(void)
+{
+       return test_snow3g_decryption(&snow3g_test_case_3);
+}
+
+static int
+test_snow3g_decryption_test_case_4(void)
+{
+       return test_snow3g_decryption(&snow3g_test_case_4);
+}
+
+static int
+test_snow3g_decryption_test_case_5(void)
+{
+       return test_snow3g_decryption(&snow3g_test_case_5);
+}
 /* ***** AES-GCM Tests ***** */

 static int
@@ -1917,8 +2211,30 @@ static struct unit_test_suite cryptodev_qat_testsuite  = 
{
                TEST_CASE_ST(ut_setup, ut_teardown,
                                
test_AES_CBC_HMAC_AES_XCBC_decrypt_digest_verify),

+               /** Snow3G encrypt only (UEA2) */
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_encryption_test_case_1),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_encryption_test_case_2),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_encryption_test_case_3),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_encryption_test_case_4),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_encryption_test_case_5),
                TEST_CASE_ST(ut_setup, ut_teardown, test_stats),

+               /** Snow3G decrypt only (UEA2) */
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_decryption_test_case_1),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_decryption_test_case_2),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_decryption_test_case_3),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_decryption_test_case_4),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                       test_snow3g_decryption_test_case_5),
                TEST_CASES_END() /**< NULL terminate unit test array */
        }
 };
diff --git a/app/test/test_cryptodev.h b/app/test/test_cryptodev.h
index 034393e..a349fb2 100644
--- a/app/test/test_cryptodev.h
+++ b/app/test/test_cryptodev.h
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  *
- *   Copyright(c) 2015 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2015-2016 Intel Corporation. All rights reserved.
  *
  *   Redistribution and use in source and binary forms, with or without
  *   modification, are permitted provided that the following conditions
diff --git a/app/test/test_cryptodev_snow3g_test_vectors.h 
b/app/test/test_cryptodev_snow3g_test_vectors.h
new file mode 100644
index 0000000..7f74518
--- /dev/null
+++ b/app/test/test_cryptodev_snow3g_test_vectors.h
@@ -0,0 +1,323 @@
+/*-
+ *   BSD LICENSE
+ *
+ *   Copyright(c) 2016 Intel Corporation. All rights reserved.
+ *
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
+ *   are met:
+ *
+ *   * Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ *   * Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in
+ *     the documentation and/or other materials provided with the
+ *     distribution.
+ *   * Neither the name of Intel Corporation nor the names of its
+ *     contributors may be used to endorse or promote products derived
+ *     from this software without specific prior written permission.
+ *
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef TEST_CRYPTODEV_SNOW3G_TEST_VECTORS_H_
+#define TEST_CRYPTODEV_SNOW3G_TEST_VECTORS_H_
+
+struct snow3g_test_data {
+       struct {
+               uint8_t data[64];
+               unsigned len;
+       } key;
+
+       struct {
+               uint8_t data[64] __rte_aligned(16);
+               unsigned len;
+       } iv;
+
+       struct {
+               uint8_t data[1024];
+               unsigned len;
+       } plaintext;
+
+       struct {
+               uint8_t data[1024];
+               unsigned len;
+       } ciphertext;
+
+       struct {
+               unsigned len;
+       } validDataLenInBits;
+
+       struct {
+               uint8_t data[64];
+               unsigned len;
+       } aad;
+
+       struct {
+               uint8_t data[64];
+               unsigned len;
+       } digest;
+};
+struct snow3g_test_data snow3g_test_case_1 = {
+       .key = {
+               .data = {
+                       0x2B, 0xD6, 0x45, 0x9F, 0x82, 0xC5, 0xB3, 0x00,
+                       0x95, 0x2C, 0x49, 0x10, 0x48, 0x81, 0xFF, 0x48
+               },
+               .len = 16
+       },
+       .iv = {
+               .data = {
+                       0x72, 0xA4, 0xF2, 0x0F, 0x64, 0x00, 0x00, 0x00,
+                       0x72, 0xA4, 0xF2, 0x0F, 0x64, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       },
+       .plaintext = {
+               .data = {
+                       0x7E, 0xC6, 0x12, 0x72, 0x74, 0x3B, 0xF1, 0x61,
+                       0x47, 0x26, 0x44, 0x6A, 0x6C, 0x38, 0xCE, 0xD1,
+                       0x66, 0xF6, 0xCA, 0x76, 0xEB, 0x54, 0x30, 0x04,
+                       0x42, 0x86, 0x34, 0x6C, 0xEF, 0x13, 0x0F, 0x92,
+                       0x92, 0x2B, 0x03, 0x45, 0x0D, 0x3A, 0x99, 0x75,
+                       0xE5, 0xBD, 0x2E, 0xA0, 0xEB, 0x55, 0xAD, 0x8E,
+                       0x1B, 0x19, 0x9E, 0x3E, 0xC4, 0x31, 0x60, 0x20,
+                       0xE9, 0xA1, 0xB2, 0x85, 0xE7, 0x62, 0x79, 0x53,
+                       0x59, 0xB7, 0xBD, 0xFD, 0x39, 0xBE, 0xF4, 0xB2,
+                       0x48, 0x45, 0x83, 0xD5, 0xAF, 0xE0, 0x82, 0xAE,
+                       0xE6, 0x38, 0xBF, 0x5F, 0xD5, 0xA6, 0x06, 0x19,
+                       0x39, 0x01, 0xA0, 0x8F, 0x4A, 0xB4, 0x1A, 0xAB,
+                       0x9B, 0x13, 0x48, 0x80
+               },
+               .len = 100
+       },
+       .ciphertext = {
+               .data = {
+                       0x8C, 0xEB, 0xA6, 0x29, 0x43, 0xDC, 0xED, 0x3A,
+                       0x09, 0x90, 0xB0, 0x6E, 0xA1, 0xB0, 0xA2, 0xC4,
+                       0xFB, 0x3C, 0xED, 0xC7, 0x1B, 0x36, 0x9F, 0x42,
+                       0xBA, 0x64, 0xC1, 0xEB, 0x66, 0x65, 0xE7, 0x2A,
+                       0xA1, 0xC9, 0xBB, 0x0D, 0xEA, 0xA2, 0x0F, 0xE8,
+                       0x60, 0x58, 0xB8, 0xBA, 0xEE, 0x2C, 0x2E, 0x7F,
+                       0x0B, 0xEC, 0xCE, 0x48, 0xB5, 0x29, 0x32, 0xA5,
+                       0x3C, 0x9D, 0x5F, 0x93, 0x1A, 0x3A, 0x7C, 0x53,
+                       0x22, 0x59, 0xAF, 0x43, 0x25, 0xE2, 0xA6, 0x5E,
+                       0x30, 0x84, 0xAD, 0x5F, 0x6A, 0x51, 0x3B, 0x7B,
+                       0xDD, 0xC1, 0xB6, 0x5F, 0x0A, 0xA0, 0xD9, 0x7A,
+                       0x05, 0x3D, 0xB5, 0x5A, 0x88, 0xC4, 0xC4, 0xF9,
+                       0x60, 0x5E, 0x41, 0x40
+               },
+               .len = 100
+       },
+       .validDataLenInBits = {
+               .len = 798
+       },
+       .aad = {
+               .data = {
+                        0x72, 0xA4, 0xF2, 0x0F, 0x64, 0x00, 0x00, 0x00,
+                        0x72, 0xA4, 0xF2, 0x0F, 0x64, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       }
+};
+
+struct snow3g_test_data snow3g_test_case_2 = {
+       .key = {
+               .data = {
+                       0xEF, 0xA8, 0xB2, 0x22, 0x9E, 0x72, 0x0C, 0x2A,
+                       0x7C, 0x36, 0xEA, 0x55, 0xE9, 0x60, 0x56, 0x95
+               },
+               .len = 16
+       },
+       .iv = {
+              .data = {
+                       0xE2, 0x8B, 0xCF, 0x7B, 0xC0, 0x00, 0x00, 0x00,
+                       0xE2, 0x8B, 0xCF, 0x7B, 0xC0, 0x00, 0x00, 0x00
+               },
+              .len = 16
+       },
+       .plaintext = {
+               .data = {
+                       0x10, 0x11, 0x12, 0x31, 0xE0, 0x60, 0x25, 0x3A,
+                       0x43, 0xFD, 0x3F, 0x57, 0xE3, 0x76, 0x07, 0xAB,
+                       0x28, 0x27, 0xB5, 0x99, 0xB6, 0xB1, 0xBB, 0xDA,
+                       0x37, 0xA8, 0xAB, 0xCC, 0x5A, 0x8C, 0x55, 0x0D,
+                       0x1B, 0xFB, 0x2F, 0x49, 0x46, 0x24, 0xFB, 0x50,
+                       0x36, 0x7F, 0xA3, 0x6C, 0xE3, 0xBC, 0x68, 0xF1,
+                       0x1C, 0xF9, 0x3B, 0x15, 0x10, 0x37, 0x6B, 0x02,
+                       0x13, 0x0F, 0x81, 0x2A, 0x9F, 0xA1, 0x69, 0xD8
+               },
+               .len = 64
+       },
+       .ciphertext = {
+               .data = {
+                               0xE0, 0xDA, 0x15, 0xCA, 0x8E, 0x25, 0x54, 0xF5,
+                               0xE5, 0x6C, 0x94, 0x68, 0xDC, 0x6C, 0x7C, 0x12,
+                               0x9C, 0x56, 0x8A, 0xA5, 0x03, 0x23, 0x17, 0xE0,
+                               0x4E, 0x07, 0x29, 0x64, 0x6C, 0xAB, 0xEF, 0xA6,
+                               0x89, 0x86, 0x4C, 0x41, 0x0F, 0x24, 0xF9, 0x19,
+                               0xE6, 0x1E, 0x3D, 0xFD, 0xFA, 0xD7, 0x7E, 0x56,
+                               0x0D, 0xB0, 0xA9, 0xCD, 0x36, 0xC3, 0x4A, 0xE4,
+                               0x18, 0x14, 0x90, 0xB2, 0x9F, 0x5F, 0xA2, 0xFC
+               },
+               .len = 64
+       },
+       .validDataLenInBits = {
+               .len = 510
+       },
+       .aad = {
+               .data = {
+                        0xE2, 0x8B, 0xCF, 0x7B, 0xC0, 0x00, 0x00, 0x00,
+                        0xE2, 0x8B, 0xCF, 0x7B, 0xC0, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       }
+};
+
+struct snow3g_test_data snow3g_test_case_3 = {
+       .key = {
+               .data = {
+                        0x5A, 0xCB, 0x1D, 0x64, 0x4C, 0x0D, 0x51, 0x20,
+                        0x4E, 0xA5, 0xF1, 0x45, 0x10, 0x10, 0xD8, 0x52
+               },
+               .len = 16
+       },
+       .iv = {
+               .data = {
+                       0xFA, 0x55, 0x6B, 0x26, 0x1C, 0x00, 0x00, 0x00,
+                       0xFA, 0x55, 0x6B, 0x26, 0x1C, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       },
+       .plaintext = {
+               .data = {
+                       0xAD, 0x9C, 0x44, 0x1F, 0x89, 0x0B, 0x38, 0xC4,
+                       0x57, 0xA4, 0x9D, 0x42, 0x14, 0x07, 0xE8
+               },
+               .len = 15
+       },
+       .ciphertext = {
+               .data = {
+                       0xBA, 0x0F, 0x31, 0x30, 0x03, 0x34, 0xC5, 0x6B,
+                       0x52, 0xA7, 0x49, 0x7C, 0xBA, 0xC0, 0x46
+               },
+               .len = 15
+       },
+       .validDataLenInBits = {
+               .len = 120
+       },
+       .aad = {
+               .data = {
+                       0xFA, 0x55, 0x6B, 0x26, 0x1C, 0x00, 0x00, 0x00,
+                       0xFA, 0x55, 0x6B, 0x26, 0x1C, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       },
+};
+
+struct snow3g_test_data snow3g_test_case_4 = {
+       .key = {
+               .data = {
+                       0xD3, 0xC5, 0xD5, 0x92, 0x32, 0x7F, 0xB1, 0x1C,
+                       0x40, 0x35, 0xC6, 0x68, 0x0A, 0xF8, 0xC6, 0xD1
+               },
+               .len = 16
+       },
+       .iv = {
+               .data = {
+                       0x39, 0x8A, 0x59, 0xB4, 0x2C, 0x00, 0x00, 0x00,
+                       0x39, 0x8A, 0x59, 0xB4, 0x2C, 0x00, 0x00, 0x00
+               },
+               .len = 16
+       },
+       .plaintext = {
+               .data = {
+                       0x98, 0x1B, 0xA6, 0x82, 0x4C, 0x1B, 0xFB, 0x1A,
+                       0xB4, 0x85, 0x47, 0x20, 0x29, 0xB7, 0x1D, 0x80,
+                       0x8C, 0xE3, 0x3E, 0x2C, 0xC3, 0xC0, 0xB5, 0xFC,
+                       0x1F, 0x3D, 0xE8, 0xA6, 0xDC, 0x66, 0xB1, 0xF0
+               },
+               .len = 32
+       },
+       .ciphertext = {
+               .data = {
+                       0x98, 0x9B, 0x71, 0x9C, 0xDC, 0x33, 0xCE, 0xB7,
+                       0xCF, 0x27, 0x6A, 0x52, 0x82, 0x7C, 0xEF, 0x94,
+                       0xA5, 0x6C, 0x40, 0xC0, 0xAB, 0x9D, 0x81, 0xF7,
+                       0xA2, 0xA9, 0xBA, 0xC6, 0x0E, 0x11, 0xC4, 0xB0
+               },
+               .len = 32
+       },
+       .validDataLenInBits = {
+               .len = 253
+       }
+};
+
+struct snow3g_test_data snow3g_test_case_5 = {
+       .key = {
+               .data = {
+                       0x60, 0x90, 0xEA, 0xE0, 0x4C, 0x83, 0x70, 0x6E,
+                       0xEC, 0xBF, 0x65, 0x2B, 0xE8, 0xE3, 0x65, 0x66
+               },
+               .len = 16
+       },
+       .iv = {
+               .data = {
+                       0x72, 0xA4, 0xF2, 0x0F, 0x48, 0x00, 0x00, 0x00,
+                       0x72, 0xA4, 0xF2, 0x0F, 0x48, 0x00, 0x00, 0x00
+               },
+               .len = 16},
+       .plaintext = {
+               .data = {
+                       0x40, 0x98, 0x1B, 0xA6, 0x82, 0x4C, 0x1B, 0xFB,
+                       0x42, 0x86, 0xB2, 0x99, 0x78, 0x3D, 0xAF, 0x44,
+                       0x2C, 0x09, 0x9F, 0x7A, 0xB0, 0xF5, 0x8D, 0x5C,
+                       0x8E, 0x46, 0xB1, 0x04, 0xF0, 0x8F, 0x01, 0xB4,
+                       0x1A, 0xB4, 0x85, 0x47, 0x20, 0x29, 0xB7, 0x1D,
+                       0x36, 0xBD, 0x1A, 0x3D, 0x90, 0xDC, 0x3A, 0x41,
+                       0xB4, 0x6D, 0x51, 0x67, 0x2A, 0xC4, 0xC9, 0x66,
+                       0x3A, 0x2B, 0xE0, 0x63, 0xDA, 0x4B, 0xC8, 0xD2,
+                       0x80, 0x8C, 0xE3, 0x3E, 0x2C, 0xCC, 0xBF, 0xC6,
+                       0x34, 0xE1, 0xB2, 0x59, 0x06, 0x08, 0x76, 0xA0,
+                       0xFB, 0xB5, 0xA4, 0x37, 0xEB, 0xCC, 0x8D, 0x31,
+                       0xC1, 0x9E, 0x44, 0x54, 0x31, 0x87, 0x45, 0xE3,
+                       0x98, 0x76, 0x45, 0x98, 0x7A, 0x98, 0x6F, 0x2C,
+                       0xB0
+               },
+               .len = 105
+       },
+       .ciphertext = {
+               .data = {
+                       0x58, 0x92, 0xBB, 0xA8, 0x8B, 0xBB, 0xCA, 0xAE,
+                       0xAE, 0x76, 0x9A, 0xA0, 0x6B, 0x68, 0x3D, 0x3A,
+                       0x17, 0xCC, 0x04, 0xA3, 0x69, 0x88, 0x16, 0x97,
+                       0x43, 0x5E, 0x44, 0xFE, 0xD5, 0xFF, 0x9A, 0xF5,
+                       0x7B, 0x9E, 0x89, 0x0D, 0x4D, 0x5C, 0x64, 0x70,
+                       0x98, 0x85, 0xD4, 0x8A, 0xE4, 0x06, 0x90, 0xEC,
+                       0x04, 0x3B, 0xAA, 0xE9, 0x70, 0x57, 0x96, 0xE4,
+                       0xA9, 0xFF, 0x5A, 0x4B, 0x8D, 0x8B, 0x36, 0xD7,
+                       0xF3, 0xFE, 0x57, 0xCC, 0x6C, 0xFD, 0x6C, 0xD0,
+                       0x05, 0xCD, 0x38, 0x52, 0xA8, 0x5E, 0x94, 0xCE,
+                       0x6B, 0xCD, 0x90, 0xD0, 0xD0, 0x78, 0x39, 0xCE,
+                       0x09, 0x73, 0x35, 0x44, 0xCA, 0x8E, 0x35, 0x08,
+                       0x43, 0x24, 0x85, 0x50, 0x92, 0x2A, 0xC1, 0x28,
+                       0x18
+               },
+               .len = 105
+       },
+       .validDataLenInBits = {
+               .len = 837
+       }
+};
+
+#endif /* TEST_CRYPTODEV_SNOW3G_TEST_VECTORS_H_ */
-- 
2.1.0

Reply via email to