2626/**
2727 * Concrete class for TagTechnology.MIFARE_CLASSIC
2828 *
29- * Mifare classic has n sectors, with varying sizes, although
30- * they are at least the same pattern for any one mifare classic
29+ * MIFARE Classic has n sectors, with varying sizes, although
30+ * they are at least the same pattern for any one MIFARE Classic
3131 * product. Each sector has two keys. Authentication with the correct
3232 * key is needed before access to any sector.
3333 *
3434 * Each sector has k blocks.
35- * Block size is constant across the whole mifare classic family.
35+ * Block size is constant across the whole MIFARE classic family.
3636 */
3737public final class MifareClassic extends BasicTagTechnology {
3838 /**
@@ -43,12 +43,12 @@ public final class MifareClassic extends BasicTagTechnology {
4343 public static final byte [] KEY_DEFAULT =
4444 {(byte )0xFF ,(byte )0xFF ,(byte )0xFF ,(byte )0xFF ,(byte )0xFF ,(byte )0xFF };
4545 /**
46- * The well-known, default Mifare Application Directory read key.
46+ * The well-known, default MIFARE Application Directory read key.
4747 */
4848 public static final byte [] KEY_MIFARE_APPLICATION_DIRECTORY =
4949 {(byte )0xA0 ,(byte )0xA1 ,(byte )0xA2 ,(byte )0xA3 ,(byte )0xA4 ,(byte )0xA5 };
5050 /**
51- * The well-known, default read key for NDEF data on a Mifare Classic
51+ * The well-known, default read key for NDEF data on a MIFARE Classic
5252 */
5353 public static final byte [] KEY_NFC_FORUM =
5454 {(byte )0xD3 ,(byte )0xF7 ,(byte )0xD3 ,(byte )0xF7 ,(byte )0xD3 ,(byte )0xF7 };
0 commit comments