blob: b9bb53e21becfa59d1a02de4f21571c04e37be15 [file] [log] [blame]
Steven Cooremancd84cb42020-07-16 20:28:36 +02001/*
2 * Function signatures for functionality that can be provided by
3 * cryptographic accelerators.
Steven Cooreman56250fd2020-09-04 13:07:15 +02004 * Warning: This file will be auto-generated in the future.
Steven Cooremancd84cb42020-07-16 20:28:36 +02005 */
Steven Cooreman2c7b2f82020-09-02 13:43:46 +02006/* Copyright The Mbed TLS Contributors
Steven Cooremancd84cb42020-07-16 20:28:36 +02007 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Licensed under the Apache License, Version 2.0 (the "License"); you may
10 * not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
Steven Cooremancd84cb42020-07-16 20:28:36 +020020 */
21
22#ifndef PSA_CRYPTO_DRIVER_WRAPPERS_H
23#define PSA_CRYPTO_DRIVER_WRAPPERS_H
24
25#include "psa/crypto.h"
26#include "psa/crypto_driver_common.h"
27
Steven Cooreman37941cb2020-07-28 18:49:51 +020028/*
29 * Signature functions
30 */
Steven Cooremancd84cb42020-07-16 20:28:36 +020031psa_status_t psa_driver_wrapper_sign_hash( psa_key_slot_t *slot,
32 psa_algorithm_t alg,
33 const uint8_t *hash,
34 size_t hash_length,
35 uint8_t *signature,
36 size_t signature_size,
37 size_t *signature_length );
38
Steven Cooreman55ae2172020-07-17 19:46:15 +020039psa_status_t psa_driver_wrapper_verify_hash( psa_key_slot_t *slot,
40 psa_algorithm_t alg,
41 const uint8_t *hash,
42 size_t hash_length,
43 const uint8_t *signature,
44 size_t signature_length );
45
Steven Cooreman04524762020-10-13 17:43:44 +020046/*
47 * Key handling functions
48 */
49
Ronald Cron83282872020-11-22 14:02:39 +010050psa_status_t psa_driver_wrapper_import_key(
51 const psa_key_attributes_t *attributes,
52 const uint8_t *data, size_t data_length,
53 uint8_t *key_buffer, size_t key_buffer_size,
54 size_t *key_buffer_length, size_t *bits );
Steven Cooreman04524762020-10-13 17:43:44 +020055
Ronald Cron67227982020-11-26 15:16:05 +010056psa_status_t psa_driver_wrapper_export_key(
57 const psa_key_attributes_t *attributes,
58 const uint8_t *key_buffer, size_t key_buffer_size,
59 uint8_t *data, size_t data_size, size_t *data_length );
60
Ronald Cron84cc9942020-11-25 14:30:05 +010061psa_status_t psa_driver_wrapper_export_public_key(
62 const psa_key_attributes_t *attributes,
63 const uint8_t *key_buffer, size_t key_buffer_size,
64 uint8_t *data, size_t data_size, size_t *data_length );
65
Ronald Cron9df74be2020-12-05 19:15:23 +010066psa_status_t psa_driver_wrapper_get_key_buffer_size(
67 const psa_key_attributes_t *attributes,
68 size_t *key_buffer_size );
69
Ronald Cron84cc9942020-11-25 14:30:05 +010070psa_status_t psa_driver_wrapper_generate_key(
71 const psa_key_attributes_t *attributes,
72 psa_key_slot_t *slot );
Steven Cooremanb9b84422020-10-14 14:39:20 +020073
Steven Cooreman37941cb2020-07-28 18:49:51 +020074/*
75 * Cipher functions
76 */
77psa_status_t psa_driver_wrapper_cipher_encrypt(
78 psa_key_slot_t *slot,
79 psa_algorithm_t alg,
80 const uint8_t *input,
81 size_t input_length,
82 uint8_t *output,
83 size_t output_size,
84 size_t *output_length );
85
86psa_status_t psa_driver_wrapper_cipher_decrypt(
87 psa_key_slot_t *slot,
88 psa_algorithm_t alg,
89 const uint8_t *input,
90 size_t input_length,
91 uint8_t *output,
92 size_t output_size,
93 size_t *output_length );
94
95psa_status_t psa_driver_wrapper_cipher_encrypt_setup(
Steven Cooremanfb81aa52020-09-09 12:01:43 +020096 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +020097 psa_key_slot_t *slot,
98 psa_algorithm_t alg );
99
100psa_status_t psa_driver_wrapper_cipher_decrypt_setup(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200101 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +0200102 psa_key_slot_t *slot,
103 psa_algorithm_t alg );
104
105psa_status_t psa_driver_wrapper_cipher_generate_iv(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200106 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +0200107 uint8_t *iv,
108 size_t iv_size,
109 size_t *iv_length );
110
111psa_status_t psa_driver_wrapper_cipher_set_iv(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200112 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +0200113 const uint8_t *iv,
114 size_t iv_length );
115
116psa_status_t psa_driver_wrapper_cipher_update(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200117 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +0200118 const uint8_t *input,
119 size_t input_length,
120 uint8_t *output,
121 size_t output_size,
122 size_t *output_length );
123
124psa_status_t psa_driver_wrapper_cipher_finish(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200125 psa_operation_driver_context_t *operation,
Steven Cooreman37941cb2020-07-28 18:49:51 +0200126 uint8_t *output,
127 size_t output_size,
128 size_t *output_length );
129
130psa_status_t psa_driver_wrapper_cipher_abort(
Steven Cooremanfb81aa52020-09-09 12:01:43 +0200131 psa_operation_driver_context_t *operation );
Steven Cooreman37941cb2020-07-28 18:49:51 +0200132
Steven Cooremancd84cb42020-07-16 20:28:36 +0200133#endif /* PSA_CRYPTO_DRIVER_WRAPPERS_H */
134
135/* End of automatically generated file. */