blob: 5bb392598fd4e20f8b4fcf50e10ebff20a3153de [file] [log] [blame]
Philipp Maier08902cf2024-03-04 10:32:55 +01001module RSPDefinitions_Types {
2
3import from RSPDefinitions all;
4import from Native_Functions all;
5
6external function dec_GetEuiccChallengeResponse(in octetstring stream) return GetEuiccChallengeResponse;
7external function enc_GetEuiccChallengeResponse(in GetEuiccChallengeResponse msg) return octetstring;
8
9external function dec_EUICCInfo1(in octetstring stream) return EUICCInfo1;
10external function enc_EUICCInfo1(in EUICCInfo1 msg) return octetstring;
11
12external function dec_EUICCInfo2(in octetstring stream) return EUICCInfo2;
13external function enc_EUICCInfo2(in EUICCInfo2 msg) return octetstring;
14
15external function dec_AuthenticateServerResponse(in octetstring stream) return AuthenticateServerResponse;
16external function enc_AuthenticateServerResponse(in AuthenticateServerResponse msg) return octetstring;
17
18external function dec_CancelSessionResponse(in octetstring stream) return CancelSessionResponse;
19external function enc_CancelSessionResponse(in CancelSessionResponse msg) return octetstring;
20
21external function dec_PrepareDownloadResponse(in octetstring stream) return PrepareDownloadResponse;
22external function enc_PrepareDownloadResponse(in PrepareDownloadResponse msg) return octetstring;
23
24external function dec_ProfileInstallationResult(in octetstring stream) return ProfileInstallationResult;
25external function enc_ProfileInstallationResult(in ProfileInstallationResult msg) return octetstring;
26
27external function dec_NotificationSentResponse(in octetstring stream) return NotificationSentResponse;
28external function enc_NotificationSentResponse(in NotificationSentResponse msg) return octetstring;
29
30external function dec_RetrieveNotificationsListResponse(in octetstring stream) return RetrieveNotificationsListResponse;
31external function enc_RetrieveNotificationsListResponse(in RetrieveNotificationsListResponse msg) return octetstring;
32
33external function dec_GetEuiccDataResponse(in octetstring stream) return GetEuiccDataResponse;
34external function enc_GetEuiccDataResponse(in GetEuiccDataResponse msg) return octetstring;
35
36external function dec_EuiccConfiguredAddressesResponse(in octetstring stream) return EuiccConfiguredAddressesResponse;
37external function enc_EuiccConfiguredAddressesResponse(in EuiccConfiguredAddressesResponse msg) return octetstring;
38
39external function dec_PendingNotification(in octetstring stream) return PendingNotification;
40external function enc_PendingNotification(in PendingNotification msg) return octetstring;
41
42external function dec_ServerSigned1(in octetstring stream) return ServerSigned1;
43external function enc_ServerSigned1(in ServerSigned1 msg) return octetstring;
44
45external function dec_BoundProfilePackage(in octetstring stream) return BoundProfilePackage;
46external function enc_BoundProfilePackage(in BoundProfilePackage msg) return octetstring;
47
48external function dec_StoreMetadataRequest(in octetstring stream) return StoreMetadataRequest;
49external function enc_StoreMetadataRequest(in StoreMetadataRequest msg) return octetstring;
50
51external function dec_SmdpSigned2(in octetstring stream) return SmdpSigned2;
52external function enc_SmdpSigned2(in SmdpSigned2 msg) return octetstring;
53
Philipp Maier746f43e2024-04-29 12:17:12 +020054external function dec_RemoteProfileProvisioningResponse(in octetstring stream) return RemoteProfileProvisioningResponse;
55external function enc_RemoteProfileProvisioningResponse(in RemoteProfileProvisioningResponse msg) return octetstring;
56
57external function dec_RemoteProfileProvisioningRequest(in octetstring stream) return RemoteProfileProvisioningRequest;
58external function enc_RemoteProfileProvisioningRequest(in RemoteProfileProvisioningRequest msg) return octetstring;
59
Philipp Maier08902cf2024-03-04 10:32:55 +010060}