You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cc-book/modules/ROOT/partials/cc10-migration.adoc
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,17 @@ endif::[]
22
22
== MLS Initialization
23
23
24
24
. `mlsInit()` was decoupled from key package creation.
25
-
To create key packages after initializing MLS, call `clientKeypackages()` in a transaction.
25
+
To create key packages after initializing MLS, call `CoreCryptoContext.generateKeypackage()` in a transaction.
26
26
27
27
. removed `CoreCrypto.provideTransport()`, added `transport` parameter to `CoreCryptoContext.mlsInit()`
28
28
Instead of providing transport separately from MLS initialization provide it when calling `mlsInit()`.
29
29
30
+
== Key Packages
31
+
32
+
. We *removed* `CoreCryptoContext.clientKeypackages()`, to generate a desired amount of key package make repeated calls to `CoreCryptoContext.generateKeypackage()`.
33
+
34
+
. We *removed* `CoreCryptoContext.clientValidKeypackagesCount()`, to count remaining key packages call `CoreCryptoContext.getKeypackages()` filter the results by desired ciphersuite and credential type and count remaining items.
35
+
30
36
== Logging
31
37
32
38
. We *removed* `CoreCrypto.setLogger(logger: CoreCryptoLogger, level: CoreCryptoLogLevel)`
0 commit comments