Marino Faggiana 7 years ago
parent
commit
a945c0db1f
1 changed files with 10 additions and 3 deletions
  1. 10 3
      iOSClient/Security/NCEntoToEndInterface.swift

+ 10 - 3
iOSClient/Security/NCEntoToEndInterface.swift

@@ -31,13 +31,20 @@ class NCEntoToEndInterface : NSObject, OCNetworkingDelegate  {
         
         
         struct Element: Codable {
         struct Element: Codable {
             
             
-            let key:String
+            let initializationVector: String
+            let authenticationTag: String
+            let metadataKey: Int
             
             
+            struct encrypted: Codable {
+                
+                let key: String
+                let filename: String
+                let mimetype: String
+                let version: Int
+            }
         }
         }
     }
     }
 
 
-    
-    
     let appDelegate = UIApplication.shared.delegate as! AppDelegate
     let appDelegate = UIApplication.shared.delegate as! AppDelegate
     
     
     override init() {
     override init() {