tpm2_protocol/basic/
integer.rs

1// SPDX-License-Identifier: MIT OR Apache-2.0
2// Copyright (c) 2025 Opinsys Oy
3// Copyright (c) 2024-2025 Jarkko Sakkinen
4
5crate::integer!(Uint8, u8, 1);
6crate::integer!(Int8, i8, 1);
7crate::integer!(Uint16, u16, 2);
8crate::integer!(Uint32, u32, 4);
9crate::integer!(Uint64, u64, 8);
10crate::integer!(Int32, i32, 4);