| 17 | // Flow: Input -> |SHA256| -> Hash1 -> |SHA256| -> Final 32-byte hash |
| 18 | #[derive(Clone)] |
| 19 | pub struct DoubleSHA256Hash(pub [u8; 32]); |
| 20 | |
| 21 | // Master key derived from user password and admin key |
| 22 | pub struct MasterKey(pub [u8; 32]); |
no outgoing calls
no test coverage detected