mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-17 02:48:34 +03:00
The PE-Application object is used to provision JAVA-card applications into an eUICC during profile installation. Let's extend the SAIP-tool so that we are able to add, remove and inspect applications. Change-Id: I41db96f2f0ccc29c1725a92215ce6b17d87b76ce
9 lines
317 B
Bash
Executable File
9 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
# This is an example script to illustrate how to extract JAVA card applets from an existing eUICC profile package.
|
|
|
|
PYSIMPATH=../
|
|
INPATH=../smdpp-data/upp/TS48V1-A-UNIQUE-hello.der
|
|
OUTPATH=./
|
|
|
|
PYTHONPATH=$PYSIMPATH python3 $PYSIMPATH/contrib/saip-tool.py $INPATH extract-apps --output-dir ./ --format ijc
|