diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c237078..f2915acc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone This Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: | CFLAGS="-Wall -Wextra -DNDEBUG -DLIBRARY_LOG_LEVEL=LOG_DEBUG" @@ -36,7 +36,7 @@ jobs: - name: Archive Test Results if: success() || failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: system_test_results path: | @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone This Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - env: stepName: Build corePKCS11 Sanitizer Unit Tests @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone This Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - env: stepName: Build corePKCS11 Unit Tests @@ -134,7 +134,7 @@ jobs: - name: Archive Test Results if: steps.build-unit-tests.outcome == 'success' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: unit_test_results path: | @@ -146,7 +146,7 @@ jobs: - name: Upload coverage data to Codecov if: steps.build-unit-tests.outcome == 'success' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: build/coverage.info flags: unit_tests @@ -156,7 +156,7 @@ jobs: complexity: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check complexity uses: FreeRTOS/CI-CD-Github-Actions/complexity@main with: @@ -166,7 +166,7 @@ jobs: doxygen: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check doxygen build uses: FreeRTOS/CI-CD-Github-Actions/doxygen@main with: @@ -176,7 +176,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone This Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run spellings check uses: FreeRTOS/CI-CD-Github-Actions/spellings@main with: @@ -185,7 +185,7 @@ jobs: formatting: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check formatting uses: FreeRTOS/CI-CD-Github-Actions/formatting@main with: @@ -195,7 +195,7 @@ jobs: link-verifier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check Links uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main with: @@ -204,7 +204,7 @@ jobs: verify-manifest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -218,9 +218,9 @@ jobs: git-secrets: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Checkout awslabs/git-secrets - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: awslabs/git-secrets ref: master @@ -235,7 +235,7 @@ jobs: memory_statistics: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: git submodule update --init --recursive --checkout - name: Fetch dependencies (mbedtls) run: | @@ -245,7 +245,7 @@ jobs: -DSYSTEM_TESTS=0 \ -DCMAKE_C_FLAGS="${CFLAGS}" - name: Install Python3 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11.0" - name: Measure sizes diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a76bf248..f2300363 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.commit_id }} - name: Configure git identity @@ -53,7 +53,7 @@ jobs: - name: Install ZIP tools run: sudo apt-get install zip unzip - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.commit_id }} path: corePKCS11 @@ -91,7 +91,7 @@ jobs: ctest -E system --output-on-failure cd .. - name: Create artifact of ZIP - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: corePKCS11-${{ github.event.inputs.version_number }}.zip path: zip-check/corePKCS11-${{ github.event.inputs.version_number }}.zip @@ -124,7 +124,7 @@ jobs: draft: false prerelease: false - name: Download ZIP artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: corePKCS11-${{ github.event.inputs.version_number }}.zip - name: Upload Release Asset diff --git a/CHANGELOG.md b/CHANGELOG.md index ee0fe18c..4cb1ecb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log for corePKCS11 Library +## v3.6.0 (May 2024) +* [#195](https://github.com/FreeRTOS/corePKCS11/pull/195),[#196](https://github.com/FreeRTOS/corePKCS11/pull/196) Add more unit test to increase code coverage rate +* [#193](https://github.com/FreeRTOS/corePKCS11/pull/193) Fix the C_GetAttributeValue implementation in the mbedtls port to return CK_UNAVAILABLE_INFORMATION +* [#192](https://github.com/FreeRTOS/corePKCS11/pull/192) Use MBedTLS v3.6.0 LTS and v2.28.8 in mbedtls integration test +* [#190](https://github.com/FreeRTOS/corePKCS11/pull/190) Fix MISRA C 2012 deviations +* [#184](https://github.com/FreeRTOS/corePKCS11/pull/184) Support MBedTLS 3.5.1 +* [#183](https://github.com/FreeRTOS/corePKCS11/pull/183) Support optional write generated private key and certificate to disk for fleet provisioning +* [#182](https://github.com/FreeRTOS/corePKCS11/pull/182) Fix incorrect RSA verify data length check +* [#178](https://github.com/FreeRTOS/corePKCS11/pull/178) Adjust prvAddObjectToList so that it adds or updates as necessary +* [#163](https://github.com/FreeRTOS/corePKCS11/pull/163) Update doxygen to 1.9.6 + ## v3.5.0 (October 2022) * [#156](https://github.com/FreeRTOS/corePKCS11/pull/156) MISRA C:2012 compliance updates * [#155](https://github.com/FreeRTOS/corePKCS11/pull/155) Update CBMC Starter kit diff --git a/README.md b/README.md index 65daa7e3..b07f3115 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ repositories. ### Generating Documentation -The Doxygen references were created using Doxygen version 1.9.2. To generate the +The Doxygen references were created using Doxygen version 1.9.6. To generate the Doxygen pages, please run the following command from the root of this repository: diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 24fd57b2..8edacc71 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = corePKCS11 # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v3.5.0 +PROJECT_NUMBER = v3.6.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/manifest.yml b/manifest.yml index 32846bf5..be74186a 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name: "corePKCS11" -version: "v3.5.0" +version: "v3.6.0" description: "Software implementation of the PKCS #11 standard." license: "MIT" diff --git a/source/core_pkcs11.c b/source/core_pkcs11.c index eb595601..b07baea1 100644 --- a/source/core_pkcs11.c +++ b/source/core_pkcs11.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/core_pki_utils.c b/source/core_pki_utils.c index aa047129..3d1bb6ab 100644 --- a/source/core_pki_utils.c +++ b/source/core_pki_utils.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c b/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c index 23a1dafb..1cd62927 100644 --- a/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c +++ b/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.h b/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.h index 2566b67a..b3f9030a 100644 --- a/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.h +++ b/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/include/core_pkcs11.h b/source/include/core_pkcs11.h index d8b84f7c..3812e733 100644 --- a/source/include/core_pkcs11.h +++ b/source/include/core_pkcs11.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/include/core_pkcs11_config_defaults.h b/source/include/core_pkcs11_config_defaults.h index ea3fb4bf..d12a84d9 100644 --- a/source/include/core_pkcs11_config_defaults.h +++ b/source/include/core_pkcs11_config_defaults.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/include/core_pkcs11_pal.h b/source/include/core_pkcs11_pal.h index cad7afd4..88dd96c3 100644 --- a/source/include/core_pkcs11_pal.h +++ b/source/include/core_pkcs11_pal.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/include/core_pki_utils.h b/source/include/core_pki_utils.h index 7eff019d..121e9a38 100644 --- a/source/include/core_pki_utils.h +++ b/source/include/core_pki_utils.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/portable/mbedtls/core_pkcs11_mbedtls.c b/source/portable/mbedtls/core_pkcs11_mbedtls.c index a006c7b2..663a9db6 100644 --- a/source/portable/mbedtls/core_pkcs11_mbedtls.c +++ b/source/portable/mbedtls/core_pkcs11_mbedtls.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/portable/os/core_pkcs11_pal_utils.c b/source/portable/os/core_pkcs11_pal_utils.c index fc77cfdc..3e051b89 100644 --- a/source/portable/os/core_pkcs11_pal_utils.c +++ b/source/portable/os/core_pkcs11_pal_utils.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/portable/os/core_pkcs11_pal_utils.h b/source/portable/os/core_pkcs11_pal_utils.h index fbfa1c4b..19e8afb1 100644 --- a/source/portable/os/core_pkcs11_pal_utils.h +++ b/source/portable/os/core_pkcs11_pal_utils.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/portable/os/freertos_winsim/core_pkcs11_pal.c b/source/portable/os/freertos_winsim/core_pkcs11_pal.c index 1beddbe0..82077dbc 100644 --- a/source/portable/os/freertos_winsim/core_pkcs11_pal.c +++ b/source/portable/os/freertos_winsim/core_pkcs11_pal.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/source/portable/os/posix/core_pkcs11_pal.c b/source/portable/os/posix/core_pkcs11_pal.c index e8068083..0288ddd2 100644 --- a/source/portable/os/posix/core_pkcs11_pal.c +++ b/source/portable/os/posix/core_pkcs11_pal.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/include/core_pkcs11_config.h b/test/cbmc/include/core_pkcs11_config.h index 9ae8dc2a..fad12ac9 100644 --- a/test/cbmc/include/core_pkcs11_config.h +++ b/test/cbmc/include/core_pkcs11_config.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/include/pkcs11_interface_stubs.h b/test/cbmc/include/pkcs11_interface_stubs.h index d80f049c..31983aaf 100644 --- a/test/cbmc/include/pkcs11_interface_stubs.h +++ b/test/cbmc/include/pkcs11_interface_stubs.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_CloseSession/C_CloseSession_harness.c b/test/cbmc/proofs/C_CloseSession/C_CloseSession_harness.c index 4ceb8906..0e5f931c 100644 --- a/test/cbmc/proofs/C_CloseSession/C_CloseSession_harness.c +++ b/test/cbmc/proofs/C_CloseSession/C_CloseSession_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_CreateObject/C_CreateObject_harness.c b/test/cbmc/proofs/C_CreateObject/C_CreateObject_harness.c index 9a350be8..bc2e8373 100644 --- a/test/cbmc/proofs/C_CreateObject/C_CreateObject_harness.c +++ b/test/cbmc/proofs/C_CreateObject/C_CreateObject_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_DestroyObject/C_DestroyObject_harness.c b/test/cbmc/proofs/C_DestroyObject/C_DestroyObject_harness.c index ded2af0b..8e8fd534 100644 --- a/test/cbmc/proofs/C_DestroyObject/C_DestroyObject_harness.c +++ b/test/cbmc/proofs/C_DestroyObject/C_DestroyObject_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_DigestFinal/C_DigestFinal_harness.c b/test/cbmc/proofs/C_DigestFinal/C_DigestFinal_harness.c index 6c3efa80..0d74567b 100644 --- a/test/cbmc/proofs/C_DigestFinal/C_DigestFinal_harness.c +++ b/test/cbmc/proofs/C_DigestFinal/C_DigestFinal_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_DigestInit/C_DigestInit_harness.c b/test/cbmc/proofs/C_DigestInit/C_DigestInit_harness.c index 0672e4c2..c18252a8 100644 --- a/test/cbmc/proofs/C_DigestInit/C_DigestInit_harness.c +++ b/test/cbmc/proofs/C_DigestInit/C_DigestInit_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_DigestUpdate/C_DigestUpdate_harness.c b/test/cbmc/proofs/C_DigestUpdate/C_DigestUpdate_harness.c index 3e81fb1d..7c27ca91 100644 --- a/test/cbmc/proofs/C_DigestUpdate/C_DigestUpdate_harness.c +++ b/test/cbmc/proofs/C_DigestUpdate/C_DigestUpdate_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_Finalize/C_Finalize_harness.c b/test/cbmc/proofs/C_Finalize/C_Finalize_harness.c index 0915dee8..caa086c9 100644 --- a/test/cbmc/proofs/C_Finalize/C_Finalize_harness.c +++ b/test/cbmc/proofs/C_Finalize/C_Finalize_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_FindObjects/C_FindObjects_harness.c b/test/cbmc/proofs/C_FindObjects/C_FindObjects_harness.c index f2d5c58f..cdda35e5 100644 --- a/test/cbmc/proofs/C_FindObjects/C_FindObjects_harness.c +++ b/test/cbmc/proofs/C_FindObjects/C_FindObjects_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_FindObjectsFinal/C_FindObjectsFinal_harness.c b/test/cbmc/proofs/C_FindObjectsFinal/C_FindObjectsFinal_harness.c index 4eb554c3..d5c9c8b9 100644 --- a/test/cbmc/proofs/C_FindObjectsFinal/C_FindObjectsFinal_harness.c +++ b/test/cbmc/proofs/C_FindObjectsFinal/C_FindObjectsFinal_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_FindObjectsInit/C_FindObjectsInit_harness.c b/test/cbmc/proofs/C_FindObjectsInit/C_FindObjectsInit_harness.c index 8ab2d533..c141dae8 100644 --- a/test/cbmc/proofs/C_FindObjectsInit/C_FindObjectsInit_harness.c +++ b/test/cbmc/proofs/C_FindObjectsInit/C_FindObjectsInit_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GenerateKeyPair/C_GenerateKeyPair_harness.c b/test/cbmc/proofs/C_GenerateKeyPair/C_GenerateKeyPair_harness.c index d83b225b..e600bb6a 100644 --- a/test/cbmc/proofs/C_GenerateKeyPair/C_GenerateKeyPair_harness.c +++ b/test/cbmc/proofs/C_GenerateKeyPair/C_GenerateKeyPair_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GenerateRandom/C_GenerateRandom_harness.c b/test/cbmc/proofs/C_GenerateRandom/C_GenerateRandom_harness.c index dd203b44..1c2a1016 100644 --- a/test/cbmc/proofs/C_GenerateRandom/C_GenerateRandom_harness.c +++ b/test/cbmc/proofs/C_GenerateRandom/C_GenerateRandom_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GetAttributeValue/C_GetAttributeValue_harness.c b/test/cbmc/proofs/C_GetAttributeValue/C_GetAttributeValue_harness.c index dea96992..b00cc853 100644 --- a/test/cbmc/proofs/C_GetAttributeValue/C_GetAttributeValue_harness.c +++ b/test/cbmc/proofs/C_GetAttributeValue/C_GetAttributeValue_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GetFunctionList/C_GetFunctionList_harness.c b/test/cbmc/proofs/C_GetFunctionList/C_GetFunctionList_harness.c index 61fd14de..8b08a146 100644 --- a/test/cbmc/proofs/C_GetFunctionList/C_GetFunctionList_harness.c +++ b/test/cbmc/proofs/C_GetFunctionList/C_GetFunctionList_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GetMechanismInfo/C_GetMechanismInfo_harness.c b/test/cbmc/proofs/C_GetMechanismInfo/C_GetMechanismInfo_harness.c index ebf1225b..b64f4623 100644 --- a/test/cbmc/proofs/C_GetMechanismInfo/C_GetMechanismInfo_harness.c +++ b/test/cbmc/proofs/C_GetMechanismInfo/C_GetMechanismInfo_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_GetSlotList/C_GetSlotList_harness.c b/test/cbmc/proofs/C_GetSlotList/C_GetSlotList_harness.c index 3efa54e4..d28ad921 100644 --- a/test/cbmc/proofs/C_GetSlotList/C_GetSlotList_harness.c +++ b/test/cbmc/proofs/C_GetSlotList/C_GetSlotList_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_Initialize/C_Initialize_harness.c b/test/cbmc/proofs/C_Initialize/C_Initialize_harness.c index 42fecf94..6d74a667 100644 --- a/test/cbmc/proofs/C_Initialize/C_Initialize_harness.c +++ b/test/cbmc/proofs/C_Initialize/C_Initialize_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_OpenSession/C_OpenSession_harness.c b/test/cbmc/proofs/C_OpenSession/C_OpenSession_harness.c index dae027b3..128fc2a9 100644 --- a/test/cbmc/proofs/C_OpenSession/C_OpenSession_harness.c +++ b/test/cbmc/proofs/C_OpenSession/C_OpenSession_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_Sign/C_Sign_harness.c b/test/cbmc/proofs/C_Sign/C_Sign_harness.c index b0632222..a0a54498 100644 --- a/test/cbmc/proofs/C_Sign/C_Sign_harness.c +++ b/test/cbmc/proofs/C_Sign/C_Sign_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_SignInit/C_SignInit_harness.c b/test/cbmc/proofs/C_SignInit/C_SignInit_harness.c index dd7cbcc6..7269bfb6 100644 --- a/test/cbmc/proofs/C_SignInit/C_SignInit_harness.c +++ b/test/cbmc/proofs/C_SignInit/C_SignInit_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_Verify/C_Verify_harness.c b/test/cbmc/proofs/C_Verify/C_Verify_harness.c index 8072d2a6..4fd08e68 100644 --- a/test/cbmc/proofs/C_Verify/C_Verify_harness.c +++ b/test/cbmc/proofs/C_Verify/C_Verify_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/C_VerifyInit/C_VerifyInit_harness.c b/test/cbmc/proofs/C_VerifyInit/C_VerifyInit_harness.c index d3cae8ad..2c23e5bf 100644 --- a/test/cbmc/proofs/C_VerifyInit/C_VerifyInit_harness.c +++ b/test/cbmc/proofs/C_VerifyInit/C_VerifyInit_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/PKI_mbedTLSSignatureToPkcs11Signature/PKI_mbedTLSSignatureToPkcs11Signature_harness.c b/test/cbmc/proofs/PKI_mbedTLSSignatureToPkcs11Signature/PKI_mbedTLSSignatureToPkcs11Signature_harness.c index bd70263e..742161fc 100644 --- a/test/cbmc/proofs/PKI_mbedTLSSignatureToPkcs11Signature/PKI_mbedTLSSignatureToPkcs11Signature_harness.c +++ b/test/cbmc/proofs/PKI_mbedTLSSignatureToPkcs11Signature/PKI_mbedTLSSignatureToPkcs11Signature_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/PKI_pkcs11SignatureTombedTLSSignature/PKI_pkcs11SignatureTombedTLSSignature_harness.c b/test/cbmc/proofs/PKI_pkcs11SignatureTombedTLSSignature/PKI_pkcs11SignatureTombedTLSSignature_harness.c index 692088b9..80ad6bc0 100644 --- a/test/cbmc/proofs/PKI_pkcs11SignatureTombedTLSSignature/PKI_pkcs11SignatureTombedTLSSignature_harness.c +++ b/test/cbmc/proofs/PKI_pkcs11SignatureTombedTLSSignature/PKI_pkcs11SignatureTombedTLSSignature_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/vAppendSHA256AlgorithmIdentifierSequence/vAppendSHA256AlgorithmIdentifierSequence_harness.c b/test/cbmc/proofs/vAppendSHA256AlgorithmIdentifierSequence/vAppendSHA256AlgorithmIdentifierSequence_harness.c index 04a9d4af..9431250e 100644 --- a/test/cbmc/proofs/vAppendSHA256AlgorithmIdentifierSequence/vAppendSHA256AlgorithmIdentifierSequence_harness.c +++ b/test/cbmc/proofs/vAppendSHA256AlgorithmIdentifierSequence/vAppendSHA256AlgorithmIdentifierSequence_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/xFindObjectWithLabelAndClass/xFindObjectWithLabelAndClass_harness.c b/test/cbmc/proofs/xFindObjectWithLabelAndClass/xFindObjectWithLabelAndClass_harness.c index 7d641ac4..6442650f 100644 --- a/test/cbmc/proofs/xFindObjectWithLabelAndClass/xFindObjectWithLabelAndClass_harness.c +++ b/test/cbmc/proofs/xFindObjectWithLabelAndClass/xFindObjectWithLabelAndClass_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/xGetSlotList/xGetSlotList_harness.c b/test/cbmc/proofs/xGetSlotList/xGetSlotList_harness.c index 541eecfe..769bb314 100644 --- a/test/cbmc/proofs/xGetSlotList/xGetSlotList_harness.c +++ b/test/cbmc/proofs/xGetSlotList/xGetSlotList_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/xInitializePKCS11/xInitializePKCS11_harness.c b/test/cbmc/proofs/xInitializePKCS11/xInitializePKCS11_harness.c index 31f2783a..19778f7f 100644 --- a/test/cbmc/proofs/xInitializePKCS11/xInitializePKCS11_harness.c +++ b/test/cbmc/proofs/xInitializePKCS11/xInitializePKCS11_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/xInitializePkcs11Session/xInitializePkcs11Session_harness.c b/test/cbmc/proofs/xInitializePkcs11Session/xInitializePkcs11Session_harness.c index 7d17892e..5ecdc5db 100644 --- a/test/cbmc/proofs/xInitializePkcs11Session/xInitializePkcs11Session_harness.c +++ b/test/cbmc/proofs/xInitializePkcs11Session/xInitializePkcs11Session_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/proofs/xInitializePkcs11Token/xInitializePkcs11Token_harness.c b/test/cbmc/proofs/xInitializePkcs11Token/xInitializePkcs11Token_harness.c index 29cd478c..21920881 100644 --- a/test/cbmc/proofs/xInitializePkcs11Token/xInitializePkcs11Token_harness.c +++ b/test/cbmc/proofs/xInitializePkcs11Token/xInitializePkcs11Token_harness.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/stubs/core_pkcs11_pal_stubs.c b/test/cbmc/stubs/core_pkcs11_pal_stubs.c index cd1eb16c..9bd2cc32 100644 --- a/test/cbmc/stubs/core_pkcs11_pal_stubs.c +++ b/test/cbmc/stubs/core_pkcs11_pal_stubs.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/stubs/core_pki_utils_stubs.c b/test/cbmc/stubs/core_pki_utils_stubs.c index 3faf8933..0ace696b 100644 --- a/test/cbmc/stubs/core_pki_utils_stubs.c +++ b/test/cbmc/stubs/core_pki_utils_stubs.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/stubs/mbedtls_stubs.c b/test/cbmc/stubs/mbedtls_stubs.c index 7c1633c6..1d55f57f 100644 --- a/test/cbmc/stubs/mbedtls_stubs.c +++ b/test/cbmc/stubs/mbedtls_stubs.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/cbmc/stubs/pkcs11_interface_stubs.c b/test/cbmc/stubs/pkcs11_interface_stubs.c index 1d656a1c..d7cd30ca 100644 --- a/test/cbmc/stubs/pkcs11_interface_stubs.c +++ b/test/cbmc/stubs/pkcs11_interface_stubs.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/include/core_pkcs11_config.h b/test/include/core_pkcs11_config.h index a93b14c3..5f361729 100644 --- a/test/include/core_pkcs11_config.h +++ b/test/include/core_pkcs11_config.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/include/logging_levels.h b/test/include/logging_levels.h index 4d080e4d..42c7cb49 100644 --- a/test/include/logging_levels.h +++ b/test/include/logging_levels.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/include/logging_stack.h b/test/include/logging_stack.h index 2433c960..e523c614 100644 --- a/test/include/logging_stack.h +++ b/test/include/logging_stack.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/include/malloc_stub.h b/test/include/malloc_stub.h index b2bfc2dd..58dcb057 100644 --- a/test/include/malloc_stub.h +++ b/test/include/malloc_stub.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/include/mock_osal.h b/test/include/mock_osal.h index daed1ece..a69136a4 100644 --- a/test/include/mock_osal.h +++ b/test/include/mock_osal.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/mbedtls_integration/core_pkcs11_config.h b/test/mbedtls_integration/core_pkcs11_config.h index 286209d2..ad43a73c 100644 --- a/test/mbedtls_integration/core_pkcs11_config.h +++ b/test/mbedtls_integration/core_pkcs11_config.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/mbedtls_integration/core_pkcs11_test_config.h b/test/mbedtls_integration/core_pkcs11_test_config.h index f63ace50..92aa86f4 100644 --- a/test/mbedtls_integration/core_pkcs11_test_config.h +++ b/test/mbedtls_integration/core_pkcs11_test_config.h @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/mbedtls_integration/mbedtls_integration_test.c b/test/mbedtls_integration/mbedtls_integration_test.c index 68900d6b..17084435 100644 --- a/test/mbedtls_integration/mbedtls_integration_test.c +++ b/test/mbedtls_integration/mbedtls_integration_test.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/pkcs11_mbedtls_utest/core_pkcs11_mbedtls_utest.c b/test/pkcs11_mbedtls_utest/core_pkcs11_mbedtls_utest.c index 17429191..ae73c423 100644 --- a/test/pkcs11_mbedtls_utest/core_pkcs11_mbedtls_utest.c +++ b/test/pkcs11_mbedtls_utest/core_pkcs11_mbedtls_utest.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/pkcs11_utils_utest/pkcs11_utils_utest.c b/test/pkcs11_utils_utest/pkcs11_utils_utest.c index a2e5292b..15e06887 100644 --- a/test/pkcs11_utils_utest/pkcs11_utils_utest.c +++ b/test/pkcs11_utils_utest/pkcs11_utils_utest.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * diff --git a/test/wrapper_utest/core_pkcs11_utest.c b/test/wrapper_utest/core_pkcs11_utest.c index 6d3e4289..5d42db47 100644 --- a/test/wrapper_utest/core_pkcs11_utest.c +++ b/test/wrapper_utest/core_pkcs11_utest.c @@ -1,6 +1,6 @@ /* - * corePKCS11 v3.5.0 - * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * corePKCS11 v3.6.0 + * Copyright (C) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT *