This repository contains an example demonstrating the compilation and use of Mbed Crypto on Mbed OS.

Committer:
mbed_official
Date:
Mon Nov 18 15:02:35 2019 +0000
Revision:
2:b0f0cdcada7f
Parent:
0:f34b7234a060
Merge pull request #52 from dgreen-arm/add-jenkinsfile

Add Jenkinsfile for PR testing
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-mbed-crypto

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:f34b7234a060 1 /*
mbed_official 0:f34b7234a060 2 * Copyright (C) 2006-2019, Arm Limited, All Rights Reserved
mbed_official 0:f34b7234a060 3 * SPDX-License-Identifier: Apache-2.0
mbed_official 0:f34b7234a060 4 *
mbed_official 0:f34b7234a060 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
mbed_official 0:f34b7234a060 6 * not use this file except in compliance with the License.
mbed_official 0:f34b7234a060 7 * You may obtain a copy of the License at
mbed_official 0:f34b7234a060 8 *
mbed_official 0:f34b7234a060 9 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 0:f34b7234a060 10 *
mbed_official 0:f34b7234a060 11 * Unless required by applicable law or agreed to in writing, software
mbed_official 0:f34b7234a060 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
mbed_official 0:f34b7234a060 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 0:f34b7234a060 14 * See the License for the specific language governing permissions and
mbed_official 0:f34b7234a060 15 * limitations under the License.
mbed_official 0:f34b7234a060 16 *
mbed_official 0:f34b7234a060 17 * This file is part of Mbed TLS (https://tls.mbed.org)
mbed_official 0:f34b7234a060 18 */
mbed_official 0:f34b7234a060 19
mbed_official 0:f34b7234a060 20 /* Enable PSA APIs, which this example depends on. */
mbed_official 0:f34b7234a060 21 #if !defined(MBEDTLS_PSA_CRYPTO_C)
mbed_official 0:f34b7234a060 22 # define MBEDTLS_PSA_CRYPTO_C
mbed_official 0:f34b7234a060 23 #endif