You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I've noticed that in recent versions the ACR support was removed, gp -acr-add, gp -acr-delete, gp -acr-list-aram and friends. I've found commit e41c8e9 but the repository linked there (https://github.com/martinpaljak/seac) doesn't exist.
ACR support from v20.04.14 works pretty well, just -acr-delete needs a small fix to work
diff --git a/tool/src/main/java/pro/javacard/gp/GPTool.java b/tool/src/main/java/pro/javacard/gp/GPTool.java
index 68fea41..c06969b 100644
--- a/tool/src/main/java/pro/javacard/gp/GPTool.java+++ b/tool/src/main/java/pro/javacard/gp/GPTool.java@@ -564,7 +564,7 @@ public final class GPTool extends GPCommandLineInterface {
AID aid = null;
if (args.has(OPT_APPLET)) {
- aid = AID.fromString(OPT_APPLET);+ aid = AID.fromString(args.valueOf(OPT_APPLET));
}
byte[] hash = null;
The text was updated successfully, but these errors were encountered:
Also linking my branch that adds PERM_AR_DO support, not super pretty commits as I doubt there's any chance this can get merged, given that ACR support has been removed here.
Hi, I've noticed that in recent versions the ACR support was removed,
gp -acr-add
,gp -acr-delete
,gp -acr-list-aram
and friends. I've found commit e41c8e9 but the repository linked there (https://github.com/martinpaljak/seac) doesn't exist.ACR support from v20.04.14 works pretty well, just
-acr-delete
needs a small fix to workThe text was updated successfully, but these errors were encountered: