1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
#![allow(non_camel_case_types)]

pub type psa_key_handle_t = u16;
pub type psa_status_t = i32;
pub type psa_key_type_t = u16;
pub type psa_ecc_curve_t = u8;
pub type psa_dh_group_t = u8;
pub type psa_algorithm_t = u32;
pub type psa_key_lifetime_t = u32;
pub type psa_key_id_t = u32;
pub type psa_key_usage_t = u32;
pub type psa_key_derivation_step_t = u16;