derivePrivateUseMetadataKey updated to use UnifiedFullViewingKey
This commit is contained in:
parent
d6ec441c67
commit
470215dce3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue