Skip to content

Commit

Permalink
chore(core-crypto): upgrade core-crypto to rc 35
Browse files Browse the repository at this point in the history
  • Loading branch information
mchenani committed Jan 31, 2024
1 parent e17bf1d commit d935b94
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class MLSClientImpl(
TODO("Not yet implemented")
}

override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain) {
override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain): List<String>? {
TODO("Not yet implemented")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ class MLSClientImpl(
)
}

override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain) {
coreCrypto.e2eiMlsInitOnly((enrollment as E2EIClientImpl).wireE2eIdentity, certificateChain, null)
override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain): List<String>? {
return coreCrypto.e2eiMlsInitOnly((enrollment as E2EIClientImpl).wireE2eIdentity, certificateChain, null)
}

override suspend fun isE2EIEnabled(): Boolean {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ interface MLSClient {
/**
* Init MLSClient after enrollment
*/
suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain)
suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain): List<String>?

/**
* The E2EI State for the current MLS Client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class MLSClientImpl : MLSClient {
TODO("Not yet implemented")
}

override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain) {
override suspend fun e2eiMlsInitOnly(enrollment: E2EIClient, certificateChain: CertificateChain): List<String>? {
TODO("Not yet implemented")
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pbandk = "0.14.2"
turbine = "1.0.0"
avs = "9.6.9"
jna = "5.14.0"
core-crypto = "1.0.0-rc.34"
core-crypto = "1.0.0-rc.35"
core-crypto-multiplatform = "0.6.0-rc.3-multiplatform-pre1"
completeKotlin = "1.1.0"
desugar-jdk = "2.0.4"
Expand Down

0 comments on commit d935b94

Please sign in to comment.