Crypto: Add Crypto service

This change introduces the implementation of the Crypto
service based on the interface psa_crypto.h
This patch introduces changes for:

-- Secure Service, including manifest
-- Platform
-- Non-Secure interface

Change-Id: I3b68266ca80f4cd2bda2a1cd2b28b51c654b4c59
Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
diff --git a/secure_fw/services/crypto/tfm_crypto_api.h b/secure_fw/services/crypto/tfm_crypto_api.h
new file mode 100644
index 0000000..c415c09
--- /dev/null
+++ b/secure_fw/services/crypto/tfm_crypto_api.h
@@ -0,0 +1,235 @@
+/*
+ * Copyright (c) 2018, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ */
+
+#ifndef __TFM_CRYPTO_API_H__
+#define __TFM_CRYPTO_API_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+#include "tfm_crypto_defs.h"
+#include "psa_crypto.h"
+
+/**
+ * \brief List of possible operation types supported by the TFM based
+ *        implementation. This type is needed by the operation allocation,
+ *        lookup and release functions.
+ *
+ */
+enum tfm_crypto_operation_type {
+    TFM_CRYPTO_OPERATION_NONE = 0,
+    TFM_CRYPTO_CIPHER_OPERATION = 1,
+    TFM_CRYPTO_MAC_OPERATION = 2,
+    TFM_CRYPTO_HASH_OPERATION = 3,
+    TFM_CRYPTO_KEY_POLICY = 4,
+
+    /* Used to force the enum size */
+    TFM_CRYPTO_OPERATION_TYPE_MAX = INT_MAX
+};
+
+/**
+ * \brief Initialises the service
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_init(void);
+
+/**
+ * \brief Allocates an operation object
+ *
+ * \param[in]  type   Type of the operation object to allocate
+ * \param[out] handle Pointer to the corresponding handle assigned
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_operation_alloc(
+                                        enum tfm_crypto_operation_type type,
+                                        uint32_t *handle);
+/**
+ * \brief Releases an operation object
+ *
+ * \param[in] handle Pointer to the handle for the release of the
+ *                   corresponding object
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_operation_release(uint32_t *handle);
+
+/**
+ * \brief Looks up an operation object pointer from the corresponding handle
+ *
+ * \param[in]  type   Type of the operation object to look up
+ * \param[in]  handle Handle to the operation object to look up
+ * \param[out] oper   Double pointer to the corresponding object
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_operation_lookup(
+                                        enum tfm_crypto_operation_type type,
+                                        uint32_t *handle,
+                                        void **oper);
+/**
+ * \brief Import the key data in the provided key slot
+ *
+ * \param[in] key         Key slot
+ * \param[in] type        Key type
+ * \param[in] data        Key data to import
+ * \param[in] data_length Length in bytes of the data field
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_import_key(psa_key_slot_t key,
+                                            psa_key_type_t type,
+                                            const uint8_t *data,
+                                            size_t data_length);
+/**
+ * \brief Destroy the key on the provided key slot
+ *
+ * \param[in] key         Key slot
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_destroy_key(psa_key_slot_t key);
+
+/**
+ * \brief Retrieve key information for the provided key slot
+ *
+ * \param[in]  key  Key slot
+ * \param[out] type Key type associated to the key slot requested
+ * \param[out] bits Length in bits of the key in the requested slot
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_get_key_information(psa_key_slot_t key,
+                                                     psa_key_type_t *type,
+                                                     size_t *bits);
+/**
+ * \brief Export the key contained in the provided key slot
+ *
+ * \param[in]  key         Key slot
+ * \param[out] data        Buffer to hold the exported key
+ * \param[in]  data_size   Length of the buffer pointed to by data
+ * \param[out] data_length Length of the exported key
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_export_key(psa_key_slot_t key,
+                                            uint8_t *data,
+                                            size_t data_size,
+                                            size_t *data_length);
+/**
+ * \brief Export the public key contained in the provided key slot
+ *        for an asymmetric key pair.
+ *
+ * \param[in]  key         Key slot
+ * \param[out] data        Buffer to hold the exported key
+ * \param[in]  data_size   Length of the buffer pointed to by data
+ * \param[out] data_length Length of the exported key
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_export_public_key(psa_key_slot_t key,
+                                                   uint8_t *data,
+                                                   size_t data_size,
+                                                   size_t *data_length);
+
+/**
+ * \brief Set the initialisation vector on the provided cipher operation
+ *
+ * \param[in] operation  Cipher operation context
+ * \param[in] iv         Buffer that contains the IV
+ * \param[in] iv_length  Length of the provided IV
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_encrypt_set_iv(
+                                              psa_cipher_operation_t *operation,
+                                              const unsigned char *iv,
+                                              size_t iv_length);
+/**
+ * \brief Set the cipher operation using the provided algorithm and key slot,
+ *        for encryption context.
+ *
+ * \param[in] operation Cipher operation context
+ * \param[in] key       Key slot to bind to the cipher context
+ * \param[in] alg       Algorithm to use for the cipher operation
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_encrypt_setup(
+                                              psa_cipher_operation_t *operation,
+                                              psa_key_slot_t key,
+                                              psa_algorithm_t alg);
+/**
+ * \brief Set the cipher operation using the provided algorithm and key slot,
+ *        for decryption context.
+ *
+ * \param[in] operation Cipher operation context
+ * \param[in] key       Key slot to bind to the cipher context
+ * \param[in] alg       Algorithm to use for the cipher operation
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_decrypt_setup(
+                                              psa_cipher_operation_t *operation,
+                                              psa_key_slot_t key,
+                                              psa_algorithm_t alg);
+/**
+ * \brief Update the cipher context with a chunk of input data to create a
+ *        chunk of encrypted output data (for encryption contexts), or to
+ *        decrypt a chunk of encrypted input data to obtain decrypted data
+ *        (for decryption contexts).
+ *
+ * \param[in]  operation     Cipher operation context
+ * \param[in]  input         Buffer containing input data
+ * \param[in]  input_length  Input length
+ * \param[out] output        Buffer containing output data
+ * \param[in]  output_size   Size of the output buffer
+ * \param[out] output_length Size of the produced output
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_cipher_update(
+                                              psa_cipher_operation_t *operation,
+                                              const uint8_t *input,
+                                              size_t input_length,
+                                              unsigned char *output,
+                                              size_t output_size,
+                                              size_t *output_length);
+/**
+ * \brief Finalises a cipher context flushing out any remaining block of
+ *        output data
+ *
+ * \param[in]  operation     Cipher operation context
+ * \param[out] output        Buffer containing output data
+ * \param[in]  output_size   Size of the output buffer
+ * \param[out] output_length Size of the produced output
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_cipher_finish(
+                                              psa_cipher_operation_t *operation,
+                                              uint8_t *output,
+                                              size_t output_size,
+                                              size_t *output_length);
+/**
+ * \brief Aborts a cipher operation, clears the operation context provided
+ *
+ * \param[in]  operation     Cipher operation context
+ *
+ * \return Returns values as described in \ref tfm_crypto_err_t
+ */
+enum tfm_crypto_err_t tfm_crypto_cipher_abort(
+                                             psa_cipher_operation_t *operation);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __TFM_CRYPTO_API_H__ */