blob: 4cdb6191ea8ed6b3031e5143ac4783f53ac0b095 [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_sp_800_38a_encrypt_decrypt(void);
/**test case main entry*/
void test_main(void)
{
ztest_test_suite(test_cbc_fn,
ztest_unit_test(test_sp_800_38a_encrypt_decrypt));
ztest_run_test_suite(test_cbc_fn);
}