Class SecureFiles
Represent the object needed to download Files from Secure Exchanges. All the files of a same message are using the same key and IV
Inherited Members
Namespace: SecureExchangesSDK.Models.Transport
Assembly: SecureExchangesSDK.dll
Syntax
[Serializable]
public class SecureFiles
Constructors
SecureFiles()
Declaration
public SecureFiles()
Properties
Files
Represent the list of the files need to download
Declaration
public List<FileMetaData> Files { get; set; }
Property Value
| Type | Description |
|---|---|
| List<FileMetaData> |
IV
Represent the IV to decrypt the file
Declaration
public byte[] IV { get; set; }
Property Value
| Type | Description |
|---|---|
| byte[] |
KeepLocalCopyCrypted
Need to keep a local copy crypted of the file
Declaration
public bool KeepLocalCopyCrypted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Key
Reprsent the key to decrypt the file
Declaration
public byte[] Key { get; set; }
Property Value
| Type | Description |
|---|---|
| byte[] |
msgID
Represent the ID of the message associated with this file
Declaration
public Guid msgID { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |