SGP32Definitions_Templates: improve ts_initiateAuthenticationRequestEsipa

The template ts_initiateAuthenticationRequestEsipa has a field for smdpAddress and
euiccInfo1. Those fields are optional fields, but they still play a central role in
the protocol, so that they are effectively mandatory. Let's make the fields available
to the template user and populate them with meaningful default values.

Related: SYS#6824
Change-Id: I97aa039810ad9fffea4226254fa675fd24647de1
This commit is contained in:
Philipp Maier 2024-04-25 15:48:37 +02:00
parent 7ed7bd6e6d
commit e73a6a3fab
1 changed files with 5 additions and 3 deletions

View File

@ -77,11 +77,13 @@ tr_initiateAuthenticationRequestEsipa(template (present) octetstring euiccChalle
}
}
template (value) EsipaMessageFromIpaToEim
ts_initiateAuthenticationRequestEsipa(template (value) octetstring euiccChallenge := '00112233445566778899aabbccddeeff'O) := {
ts_initiateAuthenticationRequestEsipa(template (value) octetstring euiccChallenge := '00112233445566778899aabbccddeeff'O,
template (omit) charstring smdpAddress := "smdp.example.com",
template (omit) EUICCInfo1 euiccInfo1 := ts_EUICCInfo1) := {
initiateAuthenticationRequestEsipa := {
euiccChallenge := euiccChallenge,
smdpAddress := omit,
euiccInfo1 := omit
smdpAddress := smdpAddress,
euiccInfo1 := euiccInfo1
}
}