psa-crypto 0.12.0

Wrapper around the PSA Cryptography API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0

//! # PSA Operations

pub mod aead;
pub mod asym_encryption;
pub mod asym_signature;
pub mod cipher;
pub mod key_agreement;
pub mod key_derivation;
pub mod key_management;
//pub mod mac; Mbed Crypto does not support mac compute or verify yet (as of 16/07/20)
pub mod hash;
pub mod message_digest;
pub mod other;