nfc_mf_classic_dict.h 395 B

123456789101112131415
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <storage/storage.h>
  4. #include <lib/toolbox/stream/file_stream.h>
  5. bool nfc_mf_classic_dict_check_presence(Storage* storage);
  6. bool nfc_mf_classic_dict_open_file(Stream* stream);
  7. void nfc_mf_classic_dict_close_file(Stream* stream);
  8. bool nfc_mf_classic_dict_get_next_key(Stream* stream, uint64_t* key);
  9. void nfc_mf_classic_dict_reset(Stream* stream);