mirror of https://github.com/ARMmbed/mbed-os.git
crypto: Update to Mbed Crypto 1.0.0d5
parent
e03b3b68c1
commit
c101a224bc
|
|
@ -1 +1 @@
|
||||||
mbedcrypto-1.0.0d4
|
mbedcrypto-1.0.0d5
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
# Set the Mbed Crypto release to import (this can/should be edited before
|
# Set the Mbed Crypto release to import (this can/should be edited before
|
||||||
# import)
|
# import)
|
||||||
CRYPTO_RELEASE ?= mbedcrypto-1.0.0d4
|
CRYPTO_RELEASE ?= mbedcrypto-1.0.0d5
|
||||||
CRYPTO_REPO_URL ?= git@github.com:ARMmbed/mbed-crypto.git
|
CRYPTO_REPO_URL ?= git@github.com:ARMmbed/mbed-crypto.git
|
||||||
|
|
||||||
# Translate between Mbed Crypto namespace and Mbed OS namespace
|
# Translate between Mbed Crypto namespace and Mbed OS namespace
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,29 @@ extern "C" {
|
||||||
/* UID for secure storage seed */
|
/* UID for secure storage seed */
|
||||||
#define PSA_CRYPTO_ITS_RANDOM_SEED_UID 0xFFFFFF52
|
#define PSA_CRYPTO_ITS_RANDOM_SEED_UID 0xFFFFFF52
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Deprecated PSA Crypto error code definitions
|
||||||
|
*/
|
||||||
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#define PSA_ERROR_UNKNOWN_ERROR \
|
||||||
|
MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_GENERIC_ERROR )
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#define PSA_ERROR_OCCUPIED_SLOT \
|
||||||
|
MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_ALREADY_EXISTS )
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#define PSA_ERROR_EMPTY_SLOT \
|
||||||
|
MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_DOES_NOT_EXIST )
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#define PSA_ERROR_INSUFFICIENT_CAPACITY \
|
||||||
|
MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( PSA_ERROR_INSUFFICIENT_DATA )
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Library deinitialization.
|
* \brief Library deinitialization.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue