File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -936,8 +936,11 @@ export interface CrossSigningStatus {
936
936
* Crypto callbacks provided by the application
937
937
*/
938
938
export interface CryptoCallbacks extends SecretStorageCallbacks {
939
+ /** @deprecated : unused with the Rust crypto stack. */
939
940
getCrossSigningKey ?: ( keyType : string , pubKey : string ) => Promise < Uint8Array | null > ;
941
+ /** @deprecated : unused with the Rust crypto stack. */
940
942
saveCrossSigningKeys ?: ( keys : Record < string , Uint8Array > ) => void ;
943
+ /** @deprecated : unused with the Rust crypto stack. */
941
944
shouldUpgradeDeviceVerifications ?: ( users : Record < string , any > ) => Promise < string [ ] > ;
942
945
/**
943
946
* Called by {@link CryptoApi#bootstrapSecretStorage}
@@ -962,6 +965,7 @@ export interface CryptoCallbacks extends SecretStorageCallbacks {
962
965
checkFunc : ( key : Uint8Array ) => void ,
963
966
) => Promise < Uint8Array > ;
964
967
968
+ /** @deprecated : unused with the Rust crypto stack. */
965
969
getBackupKey ?: ( ) => Promise < Uint8Array > ;
966
970
}
967
971
You can’t perform that action at this time.
0 commit comments