比如在 andriod nfc 中MifareClassic 有如下方法:
authenticateSectorWithKeyA(int SectorIndex,byte[] Key):验证当前扇区的KeyA密码,返回值为ture或false。
getBlockCountInSector(int):获得当前扇区的所包含块的数量;
sectorToBlock(int):当前扇区的第1块的块号;
writeBlock(int,data):将数据data写入当前块;
readBlock(int):读取当前块的数据。
类似这样的方法,在小程序 MifareClassic 如何来达到相应的功能?
官方是否有类似的说明流程或者例子说明?