20 lines
559 B
Swift
20 lines
559 B
Swift
//
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Just a container for simple static helper methods on KeyBackupServiceImpl
|
|
/// that can be shared with other classes (incl. objc classes).
|
|
@objc
|
|
public final class SecureValueRecoveryObjcBridge: NSObject {
|
|
|
|
private override init() {}
|
|
|
|
@objc
|
|
public static func hasBackedUpMasterKey(transaction: SDSAnyReadTransaction) -> Bool {
|
|
return DependenciesBridge.shared.svr.hasBackedUpMasterKey(transaction: transaction.asV2Read)
|
|
}
|
|
}
|