Add public device keys to rageshakes

This commit is contained in:
Valere 2024-05-22 09:40:07 +02:00
parent 3f46544de4
commit bd73f31f97
5 changed files with 142 additions and 0 deletions

View file

@ -190,4 +190,12 @@ internal class RustEncryptionService(
it.mapRecoveryException()
}
}
override suspend fun deviceCurve25519(): String? {
return service.curve25519Key()
}
override suspend fun deviceEd25519(): String? {
return service.ed25519Key()
}
}