namespace YooAsset
{
public struct EncryptResult
{
///
/// 文件是否加密
///
public bool Encrypted;
///
/// 加密后的文件数据
///
public byte[] EncryptedData;
}
public struct EncryptFileInfo
{
///
/// 资源包名称
///
public string BundleName;
///
/// 文件路径
///
public string FileLoadPath;
}
public interface IEncryptionServices
{
EncryptResult Encrypt(EncryptFileInfo fileInfo);
}
}