derivePrivateUseMetadataKey updated to use UnifiedFullViewingKey

This commit is contained in:
Lukas Korba 2025-03-01 12:40:37 +01:00
parent d6ec441c67
commit 470215dce3
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@ public class AccountMetadataKey {
/// until metadata can be recovered, and then the metadata should be re-encrypted
/// under the first key.
public func derivePrivateUseMetadataKey(
ufvk: String?,
ufvk: UnifiedFullViewingKey?,
privateUseSubject: [UInt8]
) throws -> [Data] {
var kSource: [CChar]?
if let ufvk {
kSource = [CChar](ufvk.utf8CString)
kSource = [CChar](ufvk.stringEncoded.utf8CString)
}
let keysPtr = privateUseSubject.withUnsafeBufferPointer { privateUseSubjectBufferPtr in