blob: c4915b5c04b15f182d51b9cf2c9f7149ed458d96 [file] [log] [blame]
Ronald Cron00b7bfc2020-11-25 15:25:26 +01001/*
2 * PSA ECP layer on top of Mbed TLS crypto
3 */
4/*
5 * Copyright The Mbed TLS Contributors
6 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
9 * not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20
21#ifndef PSA_CRYPTO_ECP_H
22#define PSA_CRYPTO_ECP_H
23
24#include <psa/crypto.h>
25#include <mbedtls/ecp.h>
26
27/** Load the contents of a key buffer into an internal ECP representation
28 *
29 * \param[in] type The type of key contained in \p data.
30 * \param[in] data The buffer from which to load the representation.
31 * \param[in] data_length The size in bytes of \p data.
32 * \param[out] p_ecp Returns a pointer to an ECP context on success.
33 * The caller is responsible for freeing both the
34 * contents of the context and the context itself
35 * when done.
36 */
37psa_status_t mbedtls_psa_ecp_load_representation( psa_key_type_t type,
38 const uint8_t *data,
39 size_t data_length,
40 mbedtls_ecp_keypair **p_ecp );
Ronald Crone5ca3d82020-11-26 16:36:16 +010041
Ronald Crond6ec3032020-11-27 18:54:57 +010042/** Import an ECP key in binary format.
43 *
44 * \note The signature of this function is that of a PSA driver
45 * import_key entry point. This function behaves as an import_key
46 * entry point as defined in the PSA driver interface specification for
47 * transparent drivers.
48 *
49 * \param[in] attributes The attributes for the key to import.
50 * \param[in] data The buffer containing the key data in import
51 * format.
52 * \param[in] data_length Size of the \p data buffer in bytes.
53 * \param[out] key_buffer The buffer containing the key data in output
54 * format.
55 * \param[in] key_buffer_size Size of the \p key_buffer buffer in bytes. This
56 * size is greater or equal to \p data_length.
57 * \param[out] key_buffer_length The length of the data written in \p
58 * key_buffer in bytes.
59 * \param[out] bits The key size in number of bits.
60 *
61 * \retval #PSA_SUCCESS The ECP key was imported successfully.
62 * \retval #PSA_ERROR_INVALID_ARGUMENT
63 * The key data is not correctly formatted.
64 * \retval #PSA_ERROR_NOT_SUPPORTED
65 * \retval #PSA_ERROR_INSUFFICIENT_MEMORY
66 * \retval #PSA_ERROR_CORRUPTION_DETECTED
67 */
68psa_status_t mbedtls_psa_ecp_import_key(
69 const psa_key_attributes_t *attributes,
70 const uint8_t *data, size_t data_length,
71 uint8_t *key_buffer, size_t key_buffer_size,
72 size_t *key_buffer_length, size_t *bits );
73
Ronald Crone5ca3d82020-11-26 16:36:16 +010074/** Export an ECP key to export representation
75 *
76 * \param[in] type The type of key (public/private) to export
77 * \param[in] ecp The internal ECP representation from which to export
78 * \param[out] data The buffer to export to
79 * \param[in] data_size The length of the buffer to export to
80 * \param[out] data_length The amount of bytes written to \p data
81 */
82psa_status_t mbedtls_psa_ecp_export_key( psa_key_type_t type,
83 mbedtls_ecp_keypair *ecp,
84 uint8_t *data,
85 size_t data_size,
86 size_t *data_length );
87
88/** Export an ECP public key or the public part of an ECP key pair in binary
89 * format.
90 *
91 * \note The signature of this function is that of a PSA driver
92 * export_public_key entry point. This function behaves as an
93 * export_public_key entry point as defined in the PSA driver interface
94 * specification.
95 *
96 * \param[in] attributes The attributes for the key to export.
97 * \param[in] key_buffer Material or context of the key to export.
98 * \param[in] key_buffer_size Size of the \p key_buffer buffer in bytes.
99 * \param[out] data Buffer where the key data is to be written.
100 * \param[in] data_size Size of the \p data buffer in bytes.
101 * \param[out] data_length On success, the number of bytes written in
102 * \p data
103 *
104 * \retval #PSA_SUCCESS The ECP public key was exported successfully.
105 * \retval #PSA_ERROR_NOT_SUPPORTED
106 * \retval #PSA_ERROR_COMMUNICATION_FAILURE
107 * \retval #PSA_ERROR_HARDWARE_FAILURE
108 * \retval #PSA_ERROR_CORRUPTION_DETECTED
109 * \retval #PSA_ERROR_STORAGE_FAILURE
110 * \retval #PSA_ERROR_INSUFFICIENT_MEMORY
111 */
112psa_status_t mbedtls_psa_ecp_export_public_key(
113 const psa_key_attributes_t *attributes,
114 const uint8_t *key_buffer, size_t key_buffer_size,
115 uint8_t *data, size_t data_size, size_t *data_length );
116
Ronald Cronf1057d32020-11-26 19:19:10 +0100117/*
118 * BEYOND THIS POINT, TEST DRIVER ENTRY POINTS ONLY.
119 */
120
121#if defined(PSA_CRYPTO_DRIVER_TEST)
122psa_status_t mbedtls_transparent_test_driver_ecp_export_public_key(
123 const psa_key_attributes_t *attributes,
124 const uint8_t *key_buffer, size_t key_buffer_size,
125 uint8_t *data, size_t data_size, size_t *data_length );
126#endif /* PSA_CRYPTO_DRIVER_TEST */
127
Ronald Crone5ca3d82020-11-26 16:36:16 +0100128#endif /* PSA_CRYPTO_ECP_H */