Searched refs:mode (Results 1 – 6 of 6) sorted by relevance
| /optee_rust/optee-utee/src/ |
| A D | crypto_op.rs | 175 fn allocate(algo: AlgorithmId, mode: OperationMode, max_key_size: usize) -> Result<Self> { in allocate() 181 mode as u32, in allocate() 649 pub fn allocate(algo: AlgorithmId, mode: OperationMode, max_key_size: usize) -> Result<Self> { in allocate() 650 match OperationHandle::allocate(algo, mode, max_key_size) { in allocate() 1175 pub fn allocate(algo: AlgorithmId, mode: OperationMode, max_key_size: usize) -> Result<Self> { in allocate() 1176 match OperationHandle::allocate(algo, mode, max_key_size) { in allocate() 1434 pub fn allocate(algo: AlgorithmId, mode: OperationMode, max_key_size: usize) -> Result<Self> { in allocate() 1435 match OperationHandle::allocate(algo, mode, max_key_size) { in allocate()
|
| /optee_rust/examples/authentication-rs/host/src/ |
| A D | main.rs | 25 mode: Mode, in prepare() 30 let p0 = ParamValue::new(mode as u32, 0, ParamType::ValueInput); in prepare()
|
| /optee_rust/optee-utee/optee-utee-sys/src/ |
| A D | tee_api_types.rs | 144 pub mode: u32, field 162 pub mode: u32, field
|
| A D | tee_api.rs | 248 mode: u32, in TEE_AllocateOperation()
|
| /optee_rust/examples/aes-rs/ta/src/ |
| A D | main.rs | 106 pub fn ta2tee_mode_id(mode: u32) -> Result<OperationMode> { in ta2tee_mode_id() 107 match Mode::from(mode) { in ta2tee_mode_id()
|
| /optee_rust/examples/authentication-rs/ta/src/ |
| A D | main.rs | 95 let mode = match Mode::from(p0.a()) { in prepare() 104 ae.op = AE::allocate(AlgorithmId::AesCcm, mode, KEY_SIZE * 8).unwrap(); in prepare()
|
Completed in 14 milliseconds