-
Notifications
You must be signed in to change notification settings - Fork 33
Add a reference example for PSA_ALG_SP800_108_COUNTER_HMAC/CMAC #128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| # | ||
| # SPDX-FileCopyrightText: Copyright (c) 2023-2024 Nordic Semiconductor ASA | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| cmake_minimum_required(VERSION 3.27.0) | ||
|
|
||
| project("SP800-108-counter-KDF") | ||
| add_executable(kbkdf) | ||
| target_sources(kbkdf PRIVATE main.c) | ||
| set(CMAKE_C_FLAGS "-std=c99") | ||
|
|
||
| include(ExternalProject) | ||
|
|
||
|
|
||
| if(NOT DEFINED ${MBEDTLS_ROOT_PATH}) | ||
| # Clone the library through using CMAKE | ||
| ExternalProject_Add(mbedcrypto | ||
| GIT_REPOSITORY "https://github.com/Mbed-TLS/mbedtls" | ||
| GIT_TAG "v3.5.1" | ||
| GIT_SHALLOW ON | ||
| BUILD_ALWAYS OFF | ||
| SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/source_mbedtls" | ||
| INSTALL_DIR "${CMAKE_CURRENT_BINARY_DIR}/install_mbedtls" | ||
| CMAKE_CACHE_ARGS | ||
| -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> | ||
| -DENABLE_TESTING:BOOL=OFF | ||
| -DENABLE_PROGRAMS:BOOL=OFF | ||
| ) | ||
|
|
||
| else() | ||
| # Add the library using the a local folder | ||
| ExternalProject_Add(mbedcrypto | ||
| SOURCE_DIR "${MBEDTLS_ROOT_PATH}" | ||
| INSTALL_DIR "${CMAKE_CURRENT_BINARY_DIR}/install_mbedtls" | ||
| CMAKE_CACHE_ARGS | ||
| -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> | ||
| -DENABLE_TESTING:BOOL=OFF | ||
| -DENABLE_PROGRAMS:BOOL=OFF | ||
| ) | ||
|
|
||
| endif() | ||
|
|
||
| add_dependencies(kbkdf mbedcrypto) | ||
|
|
||
| target_include_directories(kbkdf PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/install_mbedtls/include) | ||
| target_link_libraries(kbkdf ${CMAKE_CURRENT_BINARY_DIR}/install_mbedtls/lib/libmbedcrypto.a) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| <!-- | ||
| SPDX-FileCopyrightText: Copyright (c) 2023-2024 Nordic Semiconductor ASA | ||
| SPDX-License-Identifier: Apache-2.0 | ||
| --> | ||
|
|
||
| NIST SP 800-108 counter-mode KDF | ||
| ================================ | ||
|
|
||
| This example shows a reference implementation for a key based key derivation function for counter mode that conforms to the [NIST SP 800-108r1 recommendation](https://csrc.nist.gov/pubs/sp/800/108/r1/final). | ||
|
|
||
| It includes a HMAC and a CMAC variant. | ||
| The CMAC variant implements the suggested addition to prevent a key control attack that is listed in Appendix B of [SP 800-108](https://csrc.nist.gov/pubs/sp/800/108/r1/final). | ||
|
|
||
|
|
||
|
|
||
| Building the example | ||
| ******************** | ||
| To build the example CMake 3.10.2 or later is required. | ||
| Also [Mbed TLS](https://github.com/Mbed-TLS/mbedtls) is required. | ||
| You can either provide a Mbed TLS installation that exists or the build script will clone it into the build folder. | ||
| Check the [requirements for building Mbed TLS](https://github.com/Mbed-TLS/mbedtls#compiling) to make sure all required dependencies are installed. | ||
|
|
||
|
|
||
| To build the example then use CMake | ||
|
|
||
| [optional] export MBEDTLS_ROOT_PATH="/path/to/your/mbedtls" | ||
| mkdir build && cd build | ||
| cmake -G "Unix Makefiles" .. | ||
| cmake --build . | ||
|
|
||
|
|
||
| Then run the sample | ||
|
|
||
| ./kbkdf | ||
| Deriving a key using SP800-108 HMAC(SHA256) counter mode...Done | ||
| Key: | ||
| ------------------- len: 32 ------------------- | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| --------------------- end --------------------- | ||
| Label: | ||
| ------------------- len: 32 ------------------- | ||
| 50 53 41 5f 41 4c 47 5f 53 50 38 30 30 5f 31 30 | ||
| 38 5f 43 4f 55 4e 54 45 52 20 53 61 6d 70 6c 65 | ||
| --------------------- end --------------------- | ||
| Context: | ||
| ------------------- len: 49 ------------------- | ||
| 53 61 6d 70 6c 65 20 6b 65 79 20 63 72 65 61 74 | ||
| 69 6f 6e 20 76 69 61 20 53 50 20 38 30 30 2d 31 | ||
| 30 38 72 31 20 43 6f 75 6e 74 65 72 20 6d 6f 64 | ||
| 65 | ||
| --------------------- end --------------------- | ||
| Capacity: 0x2a | ||
|
|
||
| HMAC derived key: | ||
| ------------------- len: 42 ------------------- | ||
| 81 58 cd 6a e7 50 69 0c 20 54 be 10 66 d2 d8 f3 | ||
| 4a b0 14 d0 7f 81 4c bc 7d 3e 3d ca 78 a9 3f 5d | ||
| 66 29 b1 14 b4 2a 04 64 a4 89 | ||
| --------------------- end --------------------- | ||
|
|
||
|
|
||
| Deriving a key using SP800-108 HMAC(SHA256) counter mode...Done | ||
| Key: | ||
| ------------------- len: 32 ------------------- | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| --------------------- end --------------------- | ||
| Label: | ||
| ------------------- len: 32 ------------------- | ||
| 50 53 41 5f 41 4c 47 5f 53 50 38 30 30 5f 31 30 | ||
| 38 5f 43 4f 55 4e 54 45 52 20 53 61 6d 70 6c 65 | ||
| --------------------- end --------------------- | ||
| Capacity: 0x2a | ||
|
|
||
| HMAC without context derived key: | ||
| ------------------- len: 42 ------------------- | ||
| 2f e0 5b d4 22 00 4f a1 9a 48 cd 8c 9b d2 ca 8d | ||
| 39 87 ea 6c 5a bc d5 54 3a ed eb 04 e2 b7 00 0c | ||
| b6 eb 18 c3 3a 3d 89 67 a7 d6 | ||
| --------------------- end --------------------- | ||
|
|
||
|
|
||
| Deriving a key using SP800-108 CMAC counter mode...Done | ||
| Key: | ||
| ------------------- len: 16 ------------------- | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| --------------------- end --------------------- | ||
| Label: | ||
| ------------------- len: 32 ------------------- | ||
| 50 53 41 5f 41 4c 47 5f 53 50 38 30 30 5f 31 30 | ||
| 38 5f 43 4f 55 4e 54 45 52 20 53 61 6d 70 6c 65 | ||
| --------------------- end --------------------- | ||
| Context: | ||
| ------------------- len: 49 ------------------- | ||
| 53 61 6d 70 6c 65 20 6b 65 79 20 63 72 65 61 74 | ||
| 69 6f 6e 20 76 69 61 20 53 50 20 38 30 30 2d 31 | ||
| 30 38 72 31 20 43 6f 75 6e 74 65 72 20 6d 6f 64 | ||
| 65 | ||
| --------------------- end --------------------- | ||
| Capacity: 0x2a | ||
|
|
||
| CMAC derived key: | ||
| ------------------- len: 42 ------------------- | ||
| 3c 50 b5 5a 13 b9 49 ad 25 b4 b4 0f c3 7f 55 38 | ||
| 36 b5 9f a0 d0 74 b7 3c 83 17 6d 4c 10 5f c2 17 | ||
| 83 8e c4 a1 b0 7b 8a be a8 f1 | ||
| --------------------- end --------------------- | ||
|
|
||
|
|
||
| Deriving a key using SP800-108 CMAC counter mode...Done | ||
| Key: | ||
| ------------------- len: 16 ------------------- | ||
| 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0d 0f | ||
| --------------------- end --------------------- | ||
| Label: | ||
| ------------------- len: 32 ------------------- | ||
| 50 53 41 5f 41 4c 47 5f 53 50 38 30 30 5f 31 30 | ||
| 38 5f 43 4f 55 4e 54 45 52 20 53 61 6d 70 6c 65 | ||
| --------------------- end --------------------- | ||
| Capacity: 0x2a | ||
|
|
||
| CMAC without context derived key: | ||
| ------------------- len: 42 ------------------- | ||
| e1 ec fc 00 1e 2e 9a db d0 16 b3 b4 f3 23 ce 00 | ||
| c1 05 82 ec 81 e1 fc 19 40 47 4c a6 84 f9 e5 07 | ||
| b5 8a bd 03 bc e5 23 82 05 11 | ||
| --------------------- end --------------------- | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.