2023-01-20 13:43:53 +01:00
|
|
|
## Getting started with Mbed TLS
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
### What is Mbed TLS?
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Mbed TLS is an open source cryptographic library that supports a wide range of
|
|
|
|
cryptographic operations, including:
|
2018-11-01 10:25:49 +01:00
|
|
|
* Key management
|
|
|
|
* Hashing
|
|
|
|
* Symmetric cryptography
|
|
|
|
* Asymmetric cryptography
|
|
|
|
* Message authentication (MAC)
|
|
|
|
* Key generation and derivation
|
|
|
|
* Authenticated encryption with associated data (AEAD)
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Mbed TLS provides a reference implementation of the cryptography interface of
|
|
|
|
the Arm Platform Security Architecture (PSA). It is written in portable C.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Mbed TLS is distributed under the Apache License, version 2.0.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
#### Platform Security Architecture (PSA)
|
|
|
|
|
|
|
|
Arm's Platform Security Architecture (PSA) is a holistic set of threat models,
|
2023-01-23 13:31:01 +01:00
|
|
|
security analyses, hardware and firmware architecture specifications, and an
|
|
|
|
open source firmware reference implementation. PSA provides a recipe, based on
|
2023-01-20 13:43:53 +01:00
|
|
|
industry best practice, that enables you to design security into both hardware
|
|
|
|
and firmware consistently. Part of the API provided by PSA is the cryptography
|
|
|
|
interface, which provides access to a set of primitives.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
### Using Mbed TLS
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
* [Getting the Mbed TLS library](#getting-the-mbed-tls-library)
|
|
|
|
* [Building the Mbed TLS library](#building-the-mbed-tls-library)
|
|
|
|
* [Using the PSA Crypto API](#using-the-psa-crypto-api)
|
2018-11-01 10:25:49 +01:00
|
|
|
* [Importing a key](#importing-a-key)
|
|
|
|
* [Signing a message using RSA](#signing-a-message-using-RSA)
|
|
|
|
* [Encrypting or decrypting using symmetric ciphers](#encrypting-or-decrypting-using-symmetric-ciphers)
|
|
|
|
* [Hashing a message](#hashing-a-message)
|
|
|
|
* [Deriving a new key from an existing key](#deriving-a-new-key-from-an-existing-key)
|
|
|
|
* [Generating a random value](#generating-a-random-value)
|
|
|
|
* [Authenticating and encrypting or decrypting a message](#authenticating-and-encrypting-or-decrypting-a-message)
|
|
|
|
* [Generating and exporting keys](#generating-and-exporting-keys)
|
2023-01-20 13:43:53 +01:00
|
|
|
* [More about the Mbed TLS library](#more-about-the-psa-crypto-api)
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
### Getting the Mbed TLS library
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Mbed TLS releases are available in the [public GitHub repository](https://github.com/Mbed-TLS/mbedtls).
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
### Building the Mbed TLS library
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to building the library with the provided makefiles:**
|
2018-11-01 10:25:49 +01:00
|
|
|
* GNU Make.
|
2023-01-20 13:43:53 +01:00
|
|
|
* A C toolchain (compiler, linker, archiver) that supports C99.
|
|
|
|
* Python 3.6 to generate the test code.
|
2018-11-01 10:25:49 +01:00
|
|
|
* Perl to run the tests.
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
If you have a C compiler such as GCC or Clang, just run `make` in the top-level
|
|
|
|
directory to build the library, a set of unit tests and some sample programs.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
To select a different compiler, set the `CC` variable to the name or path of the
|
|
|
|
compiler and linker (default: `cc`) and set `AR` to a compatible archiver
|
|
|
|
(default: `ar`); for example:
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
make CC=arm-linux-gnueabi-gcc AR=arm-linux-gnueabi-ar
|
|
|
|
```
|
2023-01-20 13:43:53 +01:00
|
|
|
The provided makefiles pass options to the compiler that assume a GCC-like
|
|
|
|
command line syntax. To use a different compiler, you may need to pass different
|
|
|
|
values for `CFLAGS`, `WARNINGS_CFLAGS` and `LDFLAGS`.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
To run the unit tests on the host machine, run `make test` from the top-level
|
|
|
|
directory. If you are cross-compiling, copy the test executable from the `tests`
|
|
|
|
directory to the target machine.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
### Using the PSA Crypto API
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
To use the PSA APIs, call `psa_crypto_init()` before calling any other PSA API.
|
|
|
|
This initializes the library.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
### Importing a key
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
To use a key for cryptography operations in PSA, you need to first
|
2020-08-04 09:51:30 +02:00
|
|
|
import it. The import operation returns the identifier of the key for use
|
2019-08-16 18:58:31 +02:00
|
|
|
with other function calls.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 15:40:44 +02:00
|
|
|
**Prerequisites to importing keys:**
|
2019-09-03 12:18:04 +02:00
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
This example shows how to import a key:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
2019-11-08 10:59:16 +01:00
|
|
|
void import_a_key(const uint8_t *key, size_t key_len)
|
|
|
|
{
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_status_t status;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
printf("Import an AES key...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set key attributes */
|
|
|
|
psa_set_key_usage_flags(&attributes, 0);
|
|
|
|
psa_set_key_algorithm(&attributes, 0);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Import the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key, key_len, &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf("Imported a key\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Free the attributes */
|
|
|
|
psa_reset_key_attributes(&attributes);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
mbedtls_psa_crypto_free();
|
2019-11-08 10:59:16 +01:00
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
### Signing a message using RSA
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API supports encrypting, decrypting, signing and verifying
|
|
|
|
messages using public key signature algorithms, such as RSA or ECDSA.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to performing asymmetric signature operations:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2019-08-16 18:58:31 +02:00
|
|
|
* Have a valid key with appropriate attributes set:
|
2019-11-26 17:01:59 +01:00
|
|
|
* Usage flag `PSA_KEY_USAGE_SIGN_HASH` to allow signing.
|
|
|
|
* Usage flag `PSA_KEY_USAGE_VERIFY_HASH` to allow signature verification.
|
2019-09-03 12:18:04 +02:00
|
|
|
* Algorithm set to the desired signature algorithm.
|
2019-08-16 18:58:31 +02:00
|
|
|
|
2019-09-04 08:14:55 +02:00
|
|
|
This example shows how to sign a hash that has already been calculated:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
2019-11-08 10:59:16 +01:00
|
|
|
void sign_a_message_using_rsa(const uint8_t *key, size_t key_len)
|
|
|
|
{
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_status_t status;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2019-09-04 08:14:55 +02:00
|
|
|
uint8_t hash[32] = {0x50, 0xd8, 0x58, 0xe0, 0x98, 0x5e, 0xcc, 0x7f,
|
2019-09-05 08:46:31 +02:00
|
|
|
0x60, 0x41, 0x8a, 0xaf, 0x0c, 0xc5, 0xab, 0x58,
|
|
|
|
0x7f, 0x42, 0xc2, 0x57, 0x0a, 0x88, 0x40, 0x95,
|
|
|
|
0xa9, 0xe8, 0xcc, 0xac, 0xd0, 0xf6, 0x54, 0x5c};
|
2019-11-26 17:01:59 +01:00
|
|
|
uint8_t signature[PSA_SIGNATURE_MAX_SIZE] = {0};
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t signature_length;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Sign a message...\t");
|
|
|
|
fflush(stdout);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Set key attributes */
|
2019-11-26 17:01:59 +01:00
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_SIGN_HASH);
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_set_key_algorithm(&attributes, PSA_ALG_RSA_PKCS1V15_SIGN_RAW);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_RSA_KEY_PAIR);
|
|
|
|
psa_set_key_bits(&attributes, 1024);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Import the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key, key_len, &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sign message using the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_sign_hash(key_id, PSA_ALG_RSA_PKCS1V15_SIGN_RAW,
|
2019-11-26 17:01:59 +01:00
|
|
|
hash, sizeof(hash),
|
|
|
|
signature, sizeof(signature),
|
|
|
|
&signature_length);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to sign\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Signed a message\n");
|
|
|
|
|
|
|
|
/* Free the attributes */
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
mbedtls_psa_crypto_free();
|
2019-11-08 10:59:16 +01:00
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
### Using symmetric ciphers
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API supports encrypting and decrypting messages using various
|
|
|
|
symmetric cipher algorithms (both block and stream ciphers).
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to working with the symmetric cipher API:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2023-01-23 13:31:01 +01:00
|
|
|
* Have a symmetric key. This key's usage flags must include
|
|
|
|
`PSA_KEY_USAGE_ENCRYPT` to allow encryption or `PSA_KEY_USAGE_DECRYPT` to
|
|
|
|
allow decryption.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**To encrypt a message with a symmetric cipher:**
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Allocate an operation (`psa_cipher_operation_t`) structure to pass to the
|
|
|
|
cipher functions.
|
2019-09-04 08:16:14 +02:00
|
|
|
1. Initialize the operation structure to zero or to `PSA_CIPHER_OPERATION_INIT`.
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Call `psa_cipher_encrypt_setup()` to specify the algorithm and the key to be
|
|
|
|
used.
|
|
|
|
1. Call either `psa_cipher_generate_iv()` or `psa_cipher_set_iv()` to generate
|
|
|
|
or set the initialization vector (IV). We recommend calling
|
|
|
|
`psa_cipher_generate_iv()`, unless you require a specific IV value.
|
|
|
|
1. Call `psa_cipher_update()` with the message to encrypt. You may call this
|
|
|
|
function multiple times, passing successive fragments of the message on
|
|
|
|
successive calls.
|
|
|
|
1. Call `psa_cipher_finish()` to end the operation and output the encrypted
|
|
|
|
message.
|
|
|
|
|
|
|
|
This example shows how to encrypt data using an AES (Advanced Encryption
|
|
|
|
Standard) key in CBC (Cipher Block Chaining) mode with no padding (assuming all
|
|
|
|
prerequisites have been fulfilled):
|
2018-11-01 10:25:49 +01:00
|
|
|
```c
|
2019-11-08 10:59:16 +01:00
|
|
|
void encrypt_with_symmetric_ciphers(const uint8_t *key, size_t key_len)
|
|
|
|
{
|
2019-08-16 18:58:31 +02:00
|
|
|
enum {
|
2020-12-18 14:23:51 +01:00
|
|
|
block_size = PSA_BLOCK_CIPHER_BLOCK_LENGTH(PSA_KEY_TYPE_AES),
|
2019-08-16 18:58:31 +02:00
|
|
|
};
|
|
|
|
psa_status_t status;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_CBC_NO_PADDING;
|
2019-08-16 18:58:31 +02:00
|
|
|
uint8_t plaintext[block_size] = SOME_PLAINTEXT;
|
|
|
|
uint8_t iv[block_size];
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t iv_len;
|
2019-08-16 18:58:31 +02:00
|
|
|
uint8_t output[block_size];
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t output_len;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
|
|
|
|
printf("Encrypt with cipher...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS)
|
|
|
|
{
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Import a key */
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_ENCRYPT);
|
|
|
|
psa_set_key_algorithm(&attributes, alg);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key, key_len, &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import a key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
/* Encrypt the plaintext */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_cipher_encrypt_setup(&operation, key_id, alg);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to begin cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_generate_iv(&operation, iv, sizeof(iv), &iv_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to generate IV\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_update(&operation, plaintext, sizeof(plaintext),
|
|
|
|
output, sizeof(output), &output_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to update cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_finish(&operation, output + output_len,
|
|
|
|
sizeof(output) - output_len, &output_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to finish cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf("Encrypted plaintext\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Clean up cipher operation context */
|
|
|
|
psa_cipher_abort(&operation);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
2019-11-08 10:59:16 +01:00
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**To decrypt a message with a symmetric cipher:**
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Allocate an operation (`psa_cipher_operation_t`) structure to pass to the
|
|
|
|
cipher functions.
|
2019-09-04 12:45:54 +02:00
|
|
|
1. Initialize the operation structure to zero or to `PSA_CIPHER_OPERATION_INIT`.
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Call `psa_cipher_decrypt_setup()` to specify the algorithm and the key to be
|
|
|
|
used.
|
2019-09-03 12:18:04 +02:00
|
|
|
1. Call `psa_cipher_set_iv()` with the IV for the decryption.
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Call `psa_cipher_update()` with the message to encrypt. You may call this
|
|
|
|
function multiple times, passing successive fragments of the message on
|
|
|
|
successive calls.
|
|
|
|
1. Call `psa_cipher_finish()` to end the operation and output the decrypted
|
|
|
|
message.
|
|
|
|
|
|
|
|
This example shows how to decrypt encrypted data using an AES key in CBC mode
|
|
|
|
with no padding (assuming all prerequisites have been fulfilled):
|
2018-11-01 10:25:49 +01:00
|
|
|
```c
|
2019-11-08 10:59:16 +01:00
|
|
|
void decrypt_with_symmetric_ciphers(const uint8_t *key, size_t key_len)
|
|
|
|
{
|
2019-08-16 18:58:31 +02:00
|
|
|
enum {
|
2020-12-18 14:23:51 +01:00
|
|
|
block_size = PSA_BLOCK_CIPHER_BLOCK_LENGTH(PSA_KEY_TYPE_AES),
|
2019-08-16 18:58:31 +02:00
|
|
|
};
|
|
|
|
psa_status_t status;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_CBC_NO_PADDING;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
|
|
|
uint8_t ciphertext[block_size] = SOME_CIPHERTEXT;
|
|
|
|
uint8_t iv[block_size] = ENCRYPTED_WITH_IV;
|
|
|
|
uint8_t output[block_size];
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t output_len;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
printf("Decrypt with cipher...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS)
|
|
|
|
{
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Import a key */
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_DECRYPT);
|
|
|
|
psa_set_key_algorithm(&attributes, alg);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key, key_len, &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import a key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
/* Decrypt the ciphertext */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_cipher_decrypt_setup(&operation, key_id, alg);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to begin cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_set_iv(&operation, iv, sizeof(iv));
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to set IV\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_update(&operation, ciphertext, sizeof(ciphertext),
|
|
|
|
output, sizeof(output), &output_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to update cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_cipher_finish(&operation, output + output_len,
|
|
|
|
sizeof(output) - output_len, &output_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to finish cipher operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf("Decrypted ciphertext\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Clean up cipher operation context */
|
|
|
|
psa_cipher_abort(&operation);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
2019-11-08 10:59:16 +01:00
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
#### Handling cipher operation contexts
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
After you've initialized the operation structure with a successful call to
|
|
|
|
`psa_cipher_encrypt_setup()` or `psa_cipher_decrypt_setup()`, you can terminate
|
|
|
|
the operation at any time by calling `psa_cipher_abort()`.
|
2019-09-03 12:18:04 +02:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The call to `psa_cipher_abort()` frees any resources associated with the
|
|
|
|
operation, except for the operation structure itself.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API implicitly calls `psa_cipher_abort()` when:
|
|
|
|
* A call to `psa_cipher_generate_iv()`, `psa_cipher_set_iv()` or
|
|
|
|
`psa_cipher_update()` fails (returning any status other than `PSA_SUCCESS`).
|
2019-09-03 12:18:04 +02:00
|
|
|
* A call to `psa_cipher_finish()` succeeds or fails.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
After an implicit or explicit call to `psa_cipher_abort()`, the operation
|
|
|
|
structure is invalidated; in other words, you cannot reuse the operation
|
|
|
|
structure for the same operation. You can, however, reuse the operation
|
|
|
|
structure for a different operation by calling either
|
|
|
|
`psa_cipher_encrypt_setup()` or `psa_cipher_decrypt_setup()` again.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
You must call `psa_cipher_abort()` at some point for any operation that is
|
|
|
|
initialized successfully (by a successful call to `psa_cipher_encrypt_setup()`
|
|
|
|
or `psa_cipher_decrypt_setup()`).
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Making multiple sequential calls to `psa_cipher_abort()` on an operation that
|
|
|
|
is terminated (either implicitly or explicitly) is safe and has no effect.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
### Hashing a message
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API lets you compute and verify hashes using various hashing
|
2019-08-16 18:58:31 +02:00
|
|
|
algorithms.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to working with the hash APIs:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**To calculate a hash:**
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Allocate an operation structure (`psa_hash_operation_t`) to pass to the hash
|
|
|
|
functions.
|
2019-09-04 08:16:53 +02:00
|
|
|
1. Initialize the operation structure to zero or to `PSA_HASH_OPERATION_INIT`.
|
|
|
|
1. Call `psa_hash_setup()` to specify the hash algorithm.
|
2023-01-20 13:43:53 +01:00
|
|
|
1. Call `psa_hash_update()` with the message to encrypt. You may call this
|
|
|
|
function multiple times, passing successive fragments of the message on
|
|
|
|
successive calls.
|
|
|
|
1. Call `psa_hash_finish()` to calculate the hash, or `psa_hash_verify()` to
|
|
|
|
compare the computed hash with an expected hash value.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-04 12:45:54 +02:00
|
|
|
This example shows how to calculate the SHA-256 hash of a message:
|
2018-11-01 10:25:49 +01:00
|
|
|
```c
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_status_t status;
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-11-01 10:25:49 +01:00
|
|
|
unsigned char input[] = { 'a', 'b', 'c' };
|
|
|
|
unsigned char actual_hash[PSA_HASH_MAX_SIZE];
|
|
|
|
size_t actual_hash_len;
|
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Hash a message...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
/* Compute hash of message */
|
2019-08-16 18:58:31 +02:00
|
|
|
status = psa_hash_setup(&operation, alg);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to begin hash operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_hash_update(&operation, input, sizeof(input));
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to update hash operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_hash_finish(&operation, actual_hash, sizeof(actual_hash),
|
|
|
|
&actual_hash_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to finish hash operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Hashed a message\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Clean up hash operation context */
|
|
|
|
psa_hash_abort(&operation);
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
2019-09-04 12:45:54 +02:00
|
|
|
This example shows how to verify the SHA-256 hash of a message:
|
2018-11-01 10:25:49 +01:00
|
|
|
```c
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_status_t status;
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_SHA_256;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
|
2018-11-01 10:25:49 +01:00
|
|
|
unsigned char input[] = { 'a', 'b', 'c' };
|
|
|
|
unsigned char expected_hash[] = {
|
|
|
|
0xba, 0x78, 0x16, 0xbf, 0x8f, 0x01, 0xcf, 0xea, 0x41, 0x41, 0x40, 0xde,
|
|
|
|
0x5d, 0xae, 0x22, 0x23, 0xb0, 0x03, 0x61, 0xa3, 0x96, 0x17, 0x7a, 0x9c,
|
|
|
|
0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad
|
|
|
|
};
|
2020-12-18 14:23:51 +01:00
|
|
|
size_t expected_hash_len = PSA_HASH_LENGTH(alg);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Verify a hash...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
/* Verify message hash */
|
2019-08-16 18:58:31 +02:00
|
|
|
status = psa_hash_setup(&operation, alg);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to begin hash operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_hash_update(&operation, input, sizeof(input));
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to update hash operation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_hash_verify(&operation, expected_hash, expected_hash_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to verify hash\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Verified a hash\n");
|
|
|
|
|
|
|
|
/* Clean up hash operation context */
|
|
|
|
psa_hash_abort(&operation);
|
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
2018-11-01 10:25:49 +01:00
|
|
|
```
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The API provides the macro `PSA_HASH_LENGTH`, which returns the expected hash
|
|
|
|
length (in bytes) for the specified algorithm.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
#### Handling hash operation contexts
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
After a successful call to `psa_hash_setup()`, you can terminate the operation
|
|
|
|
at any time by calling `psa_hash_abort()`. The call to `psa_hash_abort()` frees
|
|
|
|
any resources associated with the operation, except for the operation structure
|
|
|
|
itself.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API implicitly calls `psa_hash_abort()` when:
|
|
|
|
1. A call to `psa_hash_update()` fails (returning any status other than
|
|
|
|
`PSA_SUCCESS`).
|
2019-09-03 12:18:04 +02:00
|
|
|
1. A call to `psa_hash_finish()` succeeds or fails.
|
|
|
|
1. A call to `psa_hash_verify()` succeeds or fails.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
After an implicit or explicit call to `psa_hash_abort()`, the operation
|
|
|
|
structure is invalidated; in other words, you cannot reuse the operation
|
|
|
|
structure for the same operation. You can, however, reuse the operation
|
|
|
|
structure for a different operation by calling `psa_hash_setup()` again.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
You must call `psa_hash_abort()` at some point for any operation that is
|
|
|
|
initialized successfully (by a successful call to `psa_hash_setup()`) .
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
Making multiple sequential calls to `psa_hash_abort()` on an operation that has
|
|
|
|
already been terminated (either implicitly or explicitly) is safe and has no
|
|
|
|
effect.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
### Generating a random value
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API can generate random data.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 15:40:44 +02:00
|
|
|
**Prerequisites to generating random data:**
|
2019-08-16 18:58:31 +02:00
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
<span class="notes">**Note:** To generate a random key, use `psa_generate_key()`
|
|
|
|
instead of `psa_generate_random()`.</span>
|
2019-09-03 15:40:44 +02:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
This example shows how to generate ten bytes of random data by calling
|
|
|
|
`psa_generate_random()`:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
|
|
|
psa_status_t status;
|
|
|
|
uint8_t random[10] = { 0 };
|
2019-08-16 18:58:31 +02:00
|
|
|
|
|
|
|
printf("Generate random...\t");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-01 10:25:49 +01:00
|
|
|
status = psa_generate_random(random, sizeof(random));
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to generate a random value\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Generated random data\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Clean up */
|
2018-11-01 10:25:49 +01:00
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
```
|
|
|
|
|
|
|
|
### Deriving a new key from an existing key
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API provides a key derivation API that lets you derive new keys
|
|
|
|
from existing ones. The key derivation API has functions to take inputs,
|
|
|
|
including other keys and data, and functions to generate outputs, such as
|
|
|
|
new keys or other data.
|
2019-09-03 12:18:04 +02:00
|
|
|
|
|
|
|
You must first initialize and set up a key derivation context,
|
2023-01-23 13:31:01 +01:00
|
|
|
provided with a key and, optionally, other data. Then, use the key derivation
|
|
|
|
context to either read derived data to a buffer or send derived data directly
|
|
|
|
to a key slot.
|
2019-09-03 12:18:04 +02:00
|
|
|
|
2023-01-23 13:31:01 +01:00
|
|
|
See the documentation for the particular algorithm (such as HKDF or the
|
|
|
|
TLS 1.2 PRF) for information about which inputs to pass when, and when you can
|
|
|
|
obtain which outputs.
|
2019-09-03 12:18:04 +02:00
|
|
|
|
|
|
|
**Prerequisites to working with the key derivation APIs:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2019-08-16 18:58:31 +02:00
|
|
|
* Use a key with the appropriate attributes set:
|
|
|
|
* Usage flags set for key derivation (`PSA_KEY_USAGE_DERIVE`)
|
|
|
|
* Key type set to `PSA_KEY_TYPE_DERIVE`.
|
|
|
|
* Algorithm set to a key derivation algorithm
|
2019-09-04 12:45:54 +02:00
|
|
|
(for example, `PSA_ALG_HKDF(PSA_ALG_SHA_256)`).
|
2019-08-16 18:58:31 +02:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**To derive a new AES-CTR 128-bit encryption key into a given key slot using HKDF
|
2019-09-04 12:45:54 +02:00
|
|
|
with a given key, salt and info:**
|
2019-09-03 12:18:04 +02:00
|
|
|
|
|
|
|
1. Set up the key derivation context using the `psa_key_derivation_setup()`
|
2019-08-16 18:58:31 +02:00
|
|
|
function, specifying the derivation algorithm `PSA_ALG_HKDF(PSA_ALG_SHA_256)`.
|
2019-09-05 10:38:14 +02:00
|
|
|
1. Provide an optional salt with `psa_key_derivation_input_bytes()`.
|
|
|
|
1. Provide info with `psa_key_derivation_input_bytes()`.
|
2023-01-23 13:31:01 +01:00
|
|
|
1. Provide a secret with `psa_key_derivation_input_key()`, referencing a key
|
|
|
|
that can be used for key derivation.
|
2019-08-16 18:58:31 +02:00
|
|
|
1. Set the key attributes desired for the new derived key. We'll set
|
2023-01-23 13:31:01 +01:00
|
|
|
the `PSA_KEY_USAGE_ENCRYPT` usage flag and the `PSA_ALG_CTR` algorithm for
|
|
|
|
this example.
|
2019-08-16 18:58:31 +02:00
|
|
|
1. Derive the key by calling `psa_key_derivation_output_key()`.
|
|
|
|
1. Clean up the key derivation context.
|
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
At this point, the derived key slot holds a new 128-bit AES-CTR encryption key
|
2019-09-05 10:35:16 +02:00
|
|
|
derived from the key, salt and info provided:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_status_t status;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
static const unsigned char key[] = {
|
2018-11-01 10:25:49 +01:00
|
|
|
0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
|
|
|
|
0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
|
|
|
|
0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
|
|
|
|
0x0b };
|
2019-08-16 18:58:31 +02:00
|
|
|
static const unsigned char salt[] = {
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
|
|
|
|
0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c };
|
|
|
|
static const unsigned char info[] = {
|
|
|
|
0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6,
|
|
|
|
0xf7, 0xf8, 0xf9 };
|
2018-11-01 10:25:49 +01:00
|
|
|
psa_algorithm_t alg = PSA_ALG_HKDF(PSA_ALG_SHA_256);
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_key_derivation_operation_t operation =
|
|
|
|
PSA_KEY_DERIVATION_OPERATION_INIT;
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t derived_bits = 128;
|
|
|
|
size_t capacity = PSA_BITS_TO_BYTES(derived_bits);
|
2020-08-04 09:51:30 +02:00
|
|
|
psa_key_id_t base_key;
|
|
|
|
psa_key_id_t derived_key;
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Derive a key (HKDF)...\t");
|
|
|
|
fflush(stdout);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Import a key for use in key derivation. If such a key has already been
|
|
|
|
* generated or imported, you can skip this part. */
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_DERIVE);
|
|
|
|
psa_set_key_algorithm(&attributes, alg);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_DERIVE);
|
|
|
|
status = psa_import_key(&attributes, key, sizeof(key), &base_key);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import a key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
/* Derive a key */
|
|
|
|
status = psa_key_derivation_setup(&operation, alg);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to begin key derivation\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_key_derivation_set_capacity(&operation, capacity);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to set capacity\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_key_derivation_input_bytes(&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_SALT,
|
|
|
|
salt, sizeof(salt));
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to input salt (extract)\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_key_derivation_input_key(&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_SECRET,
|
|
|
|
base_key);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to input key (extract)\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
status = psa_key_derivation_input_bytes(&operation,
|
|
|
|
PSA_KEY_DERIVATION_INPUT_INFO,
|
|
|
|
info, sizeof(info));
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to input info (expand)\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_ENCRYPT);
|
|
|
|
psa_set_key_algorithm(&attributes, PSA_ALG_CTR);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
|
|
|
status = psa_key_derivation_output_key(&attributes, &operation,
|
|
|
|
&derived_key);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to derive key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
printf("Derived key\n");
|
|
|
|
|
|
|
|
/* Clean up key derivation operation */
|
|
|
|
psa_key_derivation_abort(&operation);
|
|
|
|
|
|
|
|
/* Destroy the keys */
|
|
|
|
psa_destroy_key(derived_key);
|
|
|
|
psa_destroy_key(base_key);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
```
|
|
|
|
|
|
|
|
### Authenticating and encrypting or decrypting a message
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API provides a simple way to authenticate and encrypt with
|
|
|
|
associated data (AEAD), supporting the `PSA_ALG_CCM` algorithm.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to working with the AEAD cipher APIs:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2023-01-20 13:43:53 +01:00
|
|
|
* The key attributes for the key used for derivation must have the
|
|
|
|
`PSA_KEY_USAGE_ENCRYPT` or `PSA_KEY_USAGE_DECRYPT` usage flags.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
This example shows how to authenticate and encrypt a message:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
|
|
|
psa_status_t status;
|
2019-08-16 18:58:31 +02:00
|
|
|
static const uint8_t key[] = {
|
|
|
|
0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,
|
|
|
|
0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF };
|
|
|
|
static const uint8_t nonce[] = {
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
|
|
|
0x08, 0x09, 0x0A, 0x0B };
|
|
|
|
static const uint8_t additional_data[] = {
|
|
|
|
0xEC, 0x46, 0xBB, 0x63, 0xB0, 0x25,
|
|
|
|
0x20, 0xC3, 0x3C, 0x49, 0xFD, 0x70 };
|
|
|
|
static const uint8_t input_data[] = {
|
|
|
|
0xB9, 0x6B, 0x49, 0xE2, 0x1D, 0x62, 0x17, 0x41,
|
|
|
|
0x63, 0x28, 0x75, 0xDB, 0x7F, 0x6C, 0x92, 0x43,
|
|
|
|
0xD2, 0xD7, 0xC2 };
|
|
|
|
uint8_t *output_data = NULL;
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
|
|
|
size_t tag_length = 16;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Authenticate encrypt...\t");
|
|
|
|
fflush(stdout);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
output_size = sizeof(input_data) + tag_length;
|
|
|
|
output_data = (uint8_t *)malloc(output_size);
|
|
|
|
if (!output_data) {
|
|
|
|
printf("Out of memory\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Import a key */
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_ENCRYPT);
|
|
|
|
psa_set_key_algorithm(&attributes, PSA_ALG_CCM);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key, sizeof(key), &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
/* Authenticate and encrypt */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_aead_encrypt(key_id, PSA_ALG_CCM,
|
2018-11-01 10:25:49 +01:00
|
|
|
nonce, sizeof(nonce),
|
|
|
|
additional_data, sizeof(additional_data),
|
|
|
|
input_data, sizeof(input_data),
|
|
|
|
output_data, output_size,
|
|
|
|
&output_length);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to authenticate and encrypt\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Authenticated and encrypted\n");
|
|
|
|
|
|
|
|
/* Clean up */
|
|
|
|
free(output_data);
|
|
|
|
|
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
```
|
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
This example shows how to authenticate and decrypt a message:
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
```C
|
|
|
|
psa_status_t status;
|
2020-08-04 09:51:30 +02:00
|
|
|
static const uint8_t key_data[] = {
|
2018-11-01 10:25:49 +01:00
|
|
|
0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,
|
2019-08-16 18:58:31 +02:00
|
|
|
0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF };
|
|
|
|
static const uint8_t nonce[] = {
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
|
|
|
0x08, 0x09, 0x0A, 0x0B };
|
|
|
|
static const uint8_t additional_data[] = {
|
|
|
|
0xEC, 0x46, 0xBB, 0x63, 0xB0, 0x25,
|
|
|
|
0x20, 0xC3, 0x3C, 0x49, 0xFD, 0x70 };
|
|
|
|
static const uint8_t input_data[] = {
|
|
|
|
0x20, 0x30, 0xE0, 0x36, 0xED, 0x09, 0xA0, 0x45, 0xAF, 0x3C, 0xBA, 0xEE,
|
|
|
|
0x0F, 0xC8, 0x48, 0xAF, 0xCD, 0x89, 0x54, 0xF4, 0xF6, 0x3F, 0x28, 0x9A,
|
|
|
|
0xA1, 0xDD, 0xB2, 0xB8, 0x09, 0xCD, 0x7C, 0xE1, 0x46, 0xE9, 0x98 };
|
|
|
|
uint8_t *output_data = NULL;
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t output_size = 0;
|
|
|
|
size_t output_length = 0;
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Authenticate decrypt...\t");
|
|
|
|
fflush(stdout);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
output_size = sizeof(input_data);
|
|
|
|
output_data = (uint8_t *)malloc(output_size);
|
|
|
|
if (!output_data) {
|
|
|
|
printf("Out of memory\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Import a key */
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_DECRYPT);
|
|
|
|
psa_set_key_algorithm(&attributes, PSA_ALG_CCM);
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_AES);
|
|
|
|
psa_set_key_bits(&attributes, 128);
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_import_key(&attributes, key_data, sizeof(key_data), &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to import a key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
|
|
|
/* Authenticate and decrypt */
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_aead_decrypt(key_id, PSA_ALG_CCM,
|
2018-11-01 10:25:49 +01:00
|
|
|
nonce, sizeof(nonce),
|
|
|
|
additional_data, sizeof(additional_data),
|
|
|
|
input_data, sizeof(input_data),
|
|
|
|
output_data, output_size,
|
|
|
|
&output_length);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to authenticate and decrypt %ld\n", status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Authenticated and decrypted\n");
|
|
|
|
|
|
|
|
/* Clean up */
|
|
|
|
free(output_data);
|
|
|
|
|
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
```
|
|
|
|
|
|
|
|
### Generating and exporting keys
|
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
The PSA Crypto API provides a simple way to generate a key or key pair.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**Prerequisites to using key generation and export APIs:**
|
|
|
|
* Initialize the library with a successful call to `psa_crypto_init()`.
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-09-03 12:18:04 +02:00
|
|
|
**To generate an ECDSA key:**
|
2019-08-16 18:58:31 +02:00
|
|
|
1. Set the desired key attributes for key generation by calling
|
|
|
|
`psa_set_key_algorithm()` with the chosen ECDSA algorithm (such as
|
2023-01-20 13:43:53 +01:00
|
|
|
`PSA_ALG_DETERMINISTIC_ECDSA(PSA_ALG_SHA_256)`). You only want to export the
|
|
|
|
public key, not the key pair (or private key); therefore, do not
|
|
|
|
set `PSA_KEY_USAGE_EXPORT`.
|
2019-08-16 18:58:31 +02:00
|
|
|
1. Generate a key by calling `psa_generate_key()`.
|
2019-09-03 12:18:04 +02:00
|
|
|
1. Export the generated public key by calling `psa_export_public_key()`:
|
2018-11-01 10:25:49 +01:00
|
|
|
```C
|
2019-08-16 18:58:31 +02:00
|
|
|
enum {
|
|
|
|
key_bits = 256,
|
|
|
|
};
|
|
|
|
psa_status_t status;
|
2018-11-01 10:25:49 +01:00
|
|
|
size_t exported_length = 0;
|
2019-08-16 18:58:31 +02:00
|
|
|
static uint8_t exported[PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(key_bits)];
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_key_id_t key_id;
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
printf("Generate a key pair...\t");
|
|
|
|
fflush(stdout);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Initialize PSA Crypto */
|
|
|
|
status = psa_crypto_init();
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to initialize PSA Crypto\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
/* Generate a key */
|
2019-11-26 17:01:59 +01:00
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_SIGN_HASH);
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_set_key_algorithm(&attributes,
|
|
|
|
PSA_ALG_DETERMINISTIC_ECDSA(PSA_ALG_SHA_256));
|
|
|
|
psa_set_key_type(&attributes,
|
2020-06-02 18:19:28 +02:00
|
|
|
PSA_KEY_TYPE_ECC_KEY_PAIR(PSA_ECC_FAMILY_SECP_R1));
|
2019-08-16 18:58:31 +02:00
|
|
|
psa_set_key_bits(&attributes, key_bits);
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_generate_key(&attributes, &key_id);
|
2019-08-16 18:58:31 +02:00
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to generate key\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
|
2021-11-19 13:40:20 +01:00
|
|
|
status = psa_export_public_key(key_id, exported, sizeof(exported),
|
2019-08-16 18:58:31 +02:00
|
|
|
&exported_length);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
printf("Failed to export public key %ld\n", status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Exported a public key\n");
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2019-08-16 18:58:31 +02:00
|
|
|
/* Destroy the key */
|
2021-11-19 13:40:20 +01:00
|
|
|
psa_destroy_key(key_id);
|
2018-11-01 10:25:49 +01:00
|
|
|
|
|
|
|
mbedtls_psa_crypto_free();
|
|
|
|
```
|
|
|
|
|
2019-09-04 12:45:54 +02:00
|
|
|
### More about the PSA Crypto API
|
2018-11-01 10:25:49 +01:00
|
|
|
|
2023-01-20 13:43:53 +01:00
|
|
|
For more information about the PSA Crypto API, please see the
|
|
|
|
[PSA Cryptography API Specification](https://arm-software.github.io/psa-api/crypto/).
|