-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add timing to reading operation; fix reading type 4 in multiple chunk…
…s of 256+
- Loading branch information
1 parent
7179c65
commit c7ed04a
Showing
6 changed files
with
46 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
package pro.javacard.nfc4pc; | ||
|
||
import apdu4j.core.HexUtils; | ||
import com.payneteasy.tlv.BerTlvParser; | ||
import com.payneteasy.tlv.BerTlvs; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class MiscTest { | ||
|
||
@Test | ||
public void testSomething() { | ||
byte[] v = HexUtils.hex2bin("0312D1010E55046B7962657270756E6B2E6E6574FE000000000000000000000000000000000000000000000000000000000000000000000000000000"); | ||
BerTlvParser parser = new BerTlvParser(); | ||
BerTlvs result = parser.parse(v); | ||
System.out.println(result); | ||
public void nothing() throws Exception { | ||
|
||
} | ||
} | ||
|