authenticateSectorWithKeyB method

Future<bool> authenticateSectorWithKeyB({
  1. required int sectorIndex,
  2. required Uint8List key,
})

Authenticates a sector with key B. Returns false when the key is wrong.

Implementation

Future<bool> authenticateSectorWithKeyB({required int sectorIndex, required Uint8List key}) =>
    androidApi.mifareClassicAuthenticateSector(_handle, sectorIndex, key, false);