laforge submitted this change.
global_platform: Add install_for_personalization command
This allows us to perform STORE DATA on applications like ARA-M/ARA-D
after establishing SCP02 to the related security domain.
Change-Id: I2ce766b97bba42c64c4d4492b505be66c24f471e
---
M docs/shell.rst
M pySim/global_platform/__init__.py
2 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/docs/shell.rst b/docs/shell.rst
index dff6cd1..dbe6f8b 100644
--- a/docs/shell.rst
+++ b/docs/shell.rst
@@ -959,6 +959,12 @@
:module: pySim.global_platform
:func: ADF_SD.AddlShellCommands.put_key_parser
+install_for_personalization
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. argparse::
+ :module: pySim.global_platform
+ :func: ADF_SD.AddlShellCommands.inst_perso_parser
+
establish_scp02
~~~~~~~~~~~~~~~
.. argparse::
diff --git a/pySim/global_platform/__init__.py b/pySim/global_platform/__init__.py
index ad193ee..5492e44 100644
--- a/pySim/global_platform/__init__.py
+++ b/pySim/global_platform/__init__.py
@@ -584,6 +584,20 @@
p2 |= 0x01
return grd_list
+ inst_perso_parser = argparse.ArgumentParser()
+ inst_perso_parser.add_argument('application-aid', type=is_hexstr, help='Application AID')
+
+ @cmd2.with_argparser(inst_perso_parser)
+ def do_install_for_personalization(self, opts):
+ """Perform GlobalPlatform INSTALL [for personalization] command in order toinform a Security
+ Domain that the following STORE DATA commands are meant for a specific AID (specified here)."""
+ # Section 11.5.2.3.6 / Table 11-47
+ self.install(0x20, 0x00, "0000%02u%s000000" % (len(opts.application_aid)//2, opts.application_aid))
+
+ def install(self, p1:int, p2:int, data:Hexstr) -> ResTuple:
+ cmd_hex = "80E6%02x%02x%02x%s" % (p1, p2, len(data)//2, data)
+ return self._cmd.lchan.scc.send_apdu_checksw(cmd_hex)
+
est_scp02_parser = argparse.ArgumentParser()
est_scp02_parser.add_argument('--key-ver', type=auto_uint8, required=True,
help='Key Version Number (KVN)')
To view, visit change 35771. To unsubscribe, or for help writing mail filters, visit settings.