Steven Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Function signatures for functionality that can be provided by |
| 3 | * cryptographic accelerators. |
Steven Cooreman | 56250fd | 2020-09-04 13:07:15 +0200 | [diff] [blame] | 4 | * Warning: This file will be auto-generated in the future. |
Steven Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 5 | */ |
Steven Cooreman | 2c7b2f8 | 2020-09-02 13:43:46 +0200 | [diff] [blame] | 6 | /* Copyright The Mbed TLS Contributors |
Steven Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 7 | * 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 Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 20 | */ |
| 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 Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 28 | /* |
| 29 | * Signature functions |
| 30 | */ |
Ronald Cron | 9f17aa4 | 2020-12-08 17:07:25 +0100 | [diff] [blame] | 31 | psa_status_t psa_driver_wrapper_sign_hash( |
| 32 | const psa_key_attributes_t *attributes, |
| 33 | const uint8_t *key_buffer, size_t key_buffer_size, |
| 34 | psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, |
| 35 | uint8_t *signature, size_t signature_size, size_t *signature_length ); |
Steven Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 36 | |
Ronald Cron | 9f17aa4 | 2020-12-08 17:07:25 +0100 | [diff] [blame] | 37 | psa_status_t psa_driver_wrapper_verify_hash( |
| 38 | const psa_key_attributes_t *attributes, |
| 39 | const uint8_t *key_buffer, size_t key_buffer_size, |
| 40 | psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, |
| 41 | const uint8_t *signature, size_t signature_length ); |
Steven Cooreman | 55ae217 | 2020-07-17 19:46:15 +0200 | [diff] [blame] | 42 | |
Steven Cooreman | 0452476 | 2020-10-13 17:43:44 +0200 | [diff] [blame] | 43 | /* |
| 44 | * Key handling functions |
| 45 | */ |
| 46 | |
Ronald Cron | 8328287 | 2020-11-22 14:02:39 +0100 | [diff] [blame] | 47 | psa_status_t psa_driver_wrapper_import_key( |
| 48 | const psa_key_attributes_t *attributes, |
| 49 | const uint8_t *data, size_t data_length, |
| 50 | uint8_t *key_buffer, size_t key_buffer_size, |
| 51 | size_t *key_buffer_length, size_t *bits ); |
Steven Cooreman | 0452476 | 2020-10-13 17:43:44 +0200 | [diff] [blame] | 52 | |
Ronald Cron | 6722798 | 2020-11-26 15:16:05 +0100 | [diff] [blame] | 53 | psa_status_t psa_driver_wrapper_export_key( |
| 54 | const psa_key_attributes_t *attributes, |
| 55 | const uint8_t *key_buffer, size_t key_buffer_size, |
| 56 | uint8_t *data, size_t data_size, size_t *data_length ); |
| 57 | |
Ronald Cron | 84cc994 | 2020-11-25 14:30:05 +0100 | [diff] [blame] | 58 | psa_status_t psa_driver_wrapper_export_public_key( |
| 59 | const psa_key_attributes_t *attributes, |
| 60 | const uint8_t *key_buffer, size_t key_buffer_size, |
| 61 | uint8_t *data, size_t data_size, size_t *data_length ); |
| 62 | |
Ronald Cron | 9df74be | 2020-12-05 19:15:23 +0100 | [diff] [blame] | 63 | psa_status_t psa_driver_wrapper_get_key_buffer_size( |
| 64 | const psa_key_attributes_t *attributes, |
| 65 | size_t *key_buffer_size ); |
| 66 | |
Ronald Cron | 84cc994 | 2020-11-25 14:30:05 +0100 | [diff] [blame] | 67 | psa_status_t psa_driver_wrapper_generate_key( |
| 68 | const psa_key_attributes_t *attributes, |
Ronald Cron | 977c247 | 2020-10-13 08:32:21 +0200 | [diff] [blame] | 69 | uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ); |
Steven Cooreman | b9b8442 | 2020-10-14 14:39:20 +0200 | [diff] [blame] | 70 | |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 71 | /* |
| 72 | * Cipher functions |
| 73 | */ |
| 74 | psa_status_t psa_driver_wrapper_cipher_encrypt( |
| 75 | psa_key_slot_t *slot, |
| 76 | psa_algorithm_t alg, |
| 77 | const uint8_t *input, |
| 78 | size_t input_length, |
| 79 | uint8_t *output, |
| 80 | size_t output_size, |
| 81 | size_t *output_length ); |
| 82 | |
| 83 | psa_status_t psa_driver_wrapper_cipher_decrypt( |
| 84 | psa_key_slot_t *slot, |
| 85 | psa_algorithm_t alg, |
| 86 | const uint8_t *input, |
| 87 | size_t input_length, |
| 88 | uint8_t *output, |
| 89 | size_t output_size, |
| 90 | size_t *output_length ); |
| 91 | |
| 92 | psa_status_t psa_driver_wrapper_cipher_encrypt_setup( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 93 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 94 | psa_key_slot_t *slot, |
| 95 | psa_algorithm_t alg ); |
| 96 | |
| 97 | psa_status_t psa_driver_wrapper_cipher_decrypt_setup( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 98 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 99 | psa_key_slot_t *slot, |
| 100 | psa_algorithm_t alg ); |
| 101 | |
| 102 | psa_status_t psa_driver_wrapper_cipher_generate_iv( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 103 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 104 | uint8_t *iv, |
| 105 | size_t iv_size, |
| 106 | size_t *iv_length ); |
| 107 | |
| 108 | psa_status_t psa_driver_wrapper_cipher_set_iv( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 109 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 110 | const uint8_t *iv, |
| 111 | size_t iv_length ); |
| 112 | |
| 113 | psa_status_t psa_driver_wrapper_cipher_update( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 114 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 115 | const uint8_t *input, |
| 116 | size_t input_length, |
| 117 | uint8_t *output, |
| 118 | size_t output_size, |
| 119 | size_t *output_length ); |
| 120 | |
| 121 | psa_status_t psa_driver_wrapper_cipher_finish( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 122 | psa_operation_driver_context_t *operation, |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 123 | uint8_t *output, |
| 124 | size_t output_size, |
| 125 | size_t *output_length ); |
| 126 | |
| 127 | psa_status_t psa_driver_wrapper_cipher_abort( |
Steven Cooreman | fb81aa5 | 2020-09-09 12:01:43 +0200 | [diff] [blame] | 128 | psa_operation_driver_context_t *operation ); |
Steven Cooreman | 37941cb | 2020-07-28 18:49:51 +0200 | [diff] [blame] | 129 | |
Steven Cooreman | 1e58235 | 2021-02-18 17:24:37 +0100 | [diff] [blame^] | 130 | /* |
| 131 | * Hashing functions |
| 132 | */ |
| 133 | psa_status_t psa_driver_wrapper_hash_compute( |
| 134 | psa_algorithm_t alg, |
| 135 | const uint8_t *input, |
| 136 | size_t input_length, |
| 137 | uint8_t *hash, |
| 138 | size_t hash_size, |
| 139 | size_t *hash_length); |
| 140 | |
| 141 | psa_status_t psa_driver_wrapper_hash_setup( |
| 142 | psa_operation_driver_context_t *operation, |
| 143 | psa_algorithm_t alg ); |
| 144 | |
| 145 | psa_status_t psa_driver_wrapper_hash_clone( |
| 146 | const psa_operation_driver_context_t *source_operation, |
| 147 | psa_operation_driver_context_t *target_operation ); |
| 148 | |
| 149 | psa_status_t psa_driver_wrapper_hash_update( |
| 150 | psa_operation_driver_context_t *operation, |
| 151 | const uint8_t *input, |
| 152 | size_t input_length ); |
| 153 | |
| 154 | psa_status_t psa_driver_wrapper_hash_finish( |
| 155 | psa_operation_driver_context_t *operation, |
| 156 | uint8_t *hash, |
| 157 | size_t hash_size, |
| 158 | size_t *hash_length ); |
| 159 | |
| 160 | psa_status_t psa_driver_wrapper_hash_abort( |
| 161 | psa_operation_driver_context_t *operation ); |
| 162 | |
Steven Cooreman | cd84cb4 | 2020-07-16 20:28:36 +0200 | [diff] [blame] | 163 | #endif /* PSA_CRYPTO_DRIVER_WRAPPERS_H */ |
| 164 | |
| 165 | /* End of automatically generated file. */ |