Store additional data that will allow us to reduce the number of verification SMSs.

This commit is contained in:
Nicholas
2023-01-17 16:41:02 -05:00
committed by Cody Henthorne
parent dcf8a82c37
commit 70c6e9e60f
10 changed files with 191 additions and 2 deletions

View File

@@ -31,6 +31,10 @@ public final class MasterKey {
return Hex.toStringCondensed(derive("Registration Lock"));
}
public String deriveRegistrationRecoveryToken() {
return Hex.toStringCondensed(derive("Registration Recovery"));
}
public StorageKey deriveStorageServiceKey() {
return new StorageKey(derive("Storage Service Encryption"));
}