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