Marino Faggiana il y a 7 ans
Parent
commit
bb2ebce14c
1 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. 11 0
      iOSClient/Security/NCEntoToEndInterface.swift

+ 11 - 0
iOSClient/Security/NCEntoToEndInterface.swift

@@ -510,6 +510,16 @@ class NCEntoToEndInterface : NSObject, OCNetworkingDelegate  {
             let metadata = response.metadata
             let sharing = response.sharing
             
+            for metadataKeys in metadata.metadataKeys {
+                
+                let metadataKeysKey = metadataKeys.key
+                let metadataKeysValue = metadataKeys.value
+                
+                let metadataKeysValueDecoded : NSData = NSData(base64Encoded: metadataKeysValue, options: NSData.Base64DecodingOptions(rawValue: 0))!
+
+                let metadataKey = NCEndToEndEncryption.sharedManager().decryptAsymmetricData(metadataKeysValueDecoded as Data!, privateKey: privateKey)
+            }
+            
             for file in files {
                 
                 let fileNameIdentifier = file.key
@@ -519,6 +529,7 @@ class NCEntoToEndInterface : NSObject, OCNetworkingDelegate  {
                 let tag = element.authenticationTag
                 let encrypted = element.encrypted
                 
+                
                 guard let decyptedMetadata = NCEndToEndEncryption.sharedManager().decryptMetadata(encrypted, privateKey: privateKey, initializationVector: iv, authenticationTag: tag) else {
                     
                     return nil