@@ -56,17 +56,17 @@ module {:options "-functionSyntax:4"} AllRequiredEncryptionContextCmm {
5656 encryptDescription := KeyVectorsTypes. RequiredEncryptionContext (
5757 KeyVectorsTypes.RequiredEncryptionContextCMM(
5858 underlying := AllDefaultCmm.RawAesKeyring,
59- requiredEncryptionContextKeys := SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)
59+ requiredEncryptionContextKeys := SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )
6060 )
6161 ),
6262 decryptDescription := KeyVectorsTypes. RequiredEncryptionContext (
6363 KeyVectorsTypes.RequiredEncryptionContextCMM(
6464 underlying := AllDefaultCmm.RawAesKeyring,
65- requiredEncryptionContextKeys := SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)
65+ requiredEncryptionContextKeys := SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )
6666 )
6767 ),
6868 encryptionContext := encryptionContext,
69- requiredEncryptionContextKeys := Some (SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)),
69+ requiredEncryptionContextKeys := Some (SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )),
7070 reproducedEncryptionContext := Some (reproducedEncryptionContext)
7171 )
7272
@@ -102,17 +102,17 @@ module {:options "-functionSyntax:4"} AllRequiredEncryptionContextCmm {
102102 encryptDescription := KeyVectorsTypes. RequiredEncryptionContext (
103103 KeyVectorsTypes.RequiredEncryptionContextCMM(
104104 underlying := AllDefaultCmm.RawAesKeyring,
105- requiredEncryptionContextKeys := SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)
105+ requiredEncryptionContextKeys := SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )
106106 )
107107 ),
108108 decryptDescription := KeyVectorsTypes. RequiredEncryptionContext (
109109 KeyVectorsTypes.RequiredEncryptionContextCMM(
110110 underlying := AllDefaultCmm.RawAesKeyring,
111- requiredEncryptionContextKeys := SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)
111+ requiredEncryptionContextKeys := SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )
112112 )
113113 ),
114114 encryptionContext := encryptionContext,
115- requiredEncryptionContextKeys := Some (SortedSets.ComputeSetToSequence (requiredEncryptionContextKeys)),
115+ requiredEncryptionContextKeys := Some (SortedSets.ComputeSetToOrderedSequence2 (requiredEncryptionContextKeys, (a, b) = > a < b )),
116116 reproducedEncryptionContext := Some (reproducedEncryptionContext)
117117 )
118118 // These are only required encryption context vectors with static aes keyrings
0 commit comments