| 26 | const WINDOWS_INTEGRITY_OPEN_BACKOFF_MS: u64 = 200; |
| 27 | |
| 28 | struct AsarHeader { |
| 29 | json: Vec<u8>, |
| 30 | pickle_size: usize, |
| 31 | } |
| 32 | |
| 33 | fn find_bytes(haystack: &[u8], needle: &[u8]) -> Option<usize> { |
| 34 | if needle.is_empty() || needle.len() > haystack.len() { |
nothing calls this directly
no outgoing calls
no test coverage detected