arm-trusted-firmware/drivers/auth/mbedtls
Juan Castillo 7d37aa1711 TBB: add mbedTLS authentication related libraries
This patch adds the following mbedTLS based libraries:

* Cryptographic library

It is used by the crypto module to verify a digital signature
and a hash. This library relies on mbedTLS to perform the
cryptographic operations. mbedTLS sources must be obtained
separately.

Two key algorithms are currently supported:

    * RSA-2048
    * ECDSA-SECP256R1

The platform is responsible for picking up the required
algorithm by defining the 'MBEDTLS_KEY_ALG' variable in the
platform makefile. Available options are:

    * 'rsa' (for RSA-2048) (default option)
    * 'ecdsa' (for ECDSA-SECP256R1)

Hash algorithm currently supported is SHA-256.

* Image parser library

Used by the image parser module to extract the authentication
parameters stored in X509v3 certificates.

Change-Id: I597c4be3d29287f2f18b82846973afc142ee0bf0
2015-06-25 08:53:27 +01:00
..
mbedtls_common.c TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00
mbedtls_common.mk TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00
mbedtls_crypto.c TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00
mbedtls_crypto.mk TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00
mbedtls_x509.mk TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00
mbedtls_x509_parser.c TBB: add mbedTLS authentication related libraries 2015-06-25 08:53:27 +01:00