diff options
author | Flavio Santes <[email protected]> | 2016-11-20 16:25:24 -0600 |
---|---|---|
committer | Flavio Santes <[email protected]> | 2016-11-21 00:15:07 -0600 |
commit | 51dd93edcebccb2c6342ecaaf7bd7bddcb6aa962 (patch) | |
tree | 0dee3ccacbf213486d9d45899e7325cf3f113e8b | |
parent | eb993c6b3426831c3f85269903df0611852f7c9e (diff) |
test_aes: Solve style issues in comments
This commit solves some style issues found in comment blocks.
Change-Id: I3780ee9c1aa9df71b61b3c868bba87cbf5acfb38
Signed-off-by: Flavio Santes <[email protected]>
-rw-r--r-- | tests/test_aes.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/tests/test_aes.c b/tests/test_aes.c index af406b2..51ac93d 100644 --- a/tests/test_aes.c +++ b/tests/test_aes.c @@ -1,4 +1,6 @@ -/* test_aes.c - TinyCrypt implementation of some AES-128 tests (including NIST tests) */ +/* test_aes.c - TinyCrypt + * Implementation of some AES-128 tests (including NIST tests) + */ /* * Copyright (C) 2015 by Intel Corporation, All Rights Reserved. @@ -31,15 +33,15 @@ */ /* - DESCRIPTION - This module tests the following AES routines: - - Scenarios tested include: - - AES128 NIST key schedule test - - AES128 NIST encryption test - - AES128 NIST fixed-key and variable-text - - AES128 NIST variable-key and fixed-text -*/ + * DESCRIPTION + * This module tests the following AES routines: + * + * Scenarios tested include: + * - AES128 NIST key schedule test + * - AES128 NIST encryption test + * - AES128 NIST fixed-key and variable-text + * - AES128 NIST variable-key and fixed-text + */ #include <tinycrypt/aes.h> #include <tinycrypt/constants.h> |