zephyr/tests/crypto/ecc_dh
Niranjhana N 763384bdb2 tests: ecc_dh: convert to ztest
- replaced test points with ztest APIs wherever possible
- replaced CONFIG_MAIN_STACK_SIZE with CONFIG_ZTEST_STACKSIZE
  in the config file
- split the main file into two files:
    - main.c has ztest entry and runs separate functions for ztest
    - ecc_dh.c has the original routines

JIRA: ZEP-2449

Signed-off-by: Niranjhana N <niranjhana.n@intel.com>
2017-08-07 22:39:47 -04:00
..
src tests: ecc_dh: convert to ztest 2017-08-07 22:39:47 -04:00
Makefile tests: rename test directory test_ecc_dh -> ecc_dh 2017-06-17 10:34:24 -04:00
README.txt tests: rename test directory test_ecc_dh -> ecc_dh 2017-06-17 10:34:24 -04:00
prj.conf tests: ecc_dh: convert to ztest 2017-08-07 22:39:47 -04:00
testcase.yaml tests: crypto: include back riscv32 arch for ecc_dh, ecc_dsa and mbedtls 2017-06-30 06:31:51 -04:00

README.txt

Title: test_ecc_dh

Description:

This test verifies that the TinyCrypt ECC DH APIs operate as expected.

--------------------------------------------------------------------------------
Building and Running Project:

This project outputs to the console.  It can be built and executed
on QEMU as follows:

    make run

--------------------------------------------------------------------------------

Troubleshooting:

Problems caused by out-dated project information can be addressed by
issuing one of the following commands then rebuilding the project:

    make clean          # discard results of previous builds
                        # but keep existing configuration info
or
    make pristine       # discard results of previous builds
                        # and restore pre-defined configuration info

--------------------------------------------------------------------------------

Sample Output:

tc_start() - TinyCrypt ECC DH tests
[PASS] Test #1: ECDH - NIST-p256
[PASS] Test #2: ECC KeyGen - NIST-p256
[PASS] Test #3: PubKeyVerify - NIST-p256-SHA2-256
[PASS] Test #4: Monte Carlo (Randomized EC-DH key-exchange) - NIST-p256

All ECC tests succeeded.
===================================================================
PASS - main.
===================================================================
PROJECT EXECUTION SUCCESSFUL