mirror of
https://github.com/NohamR/N_m3u8DL-RE.git
synced 2025-05-25 14:51:52 +00:00
18 lines
588 B
C#
18 lines
588 B
C#
using N_m3u8DL_RE.Common.Entity;
|
|
using N_m3u8DL_RE.Common.Enum;
|
|
using N_m3u8DL_RE.Parser.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace N_m3u8DL_RE.Parser.Processor
|
|
{
|
|
public abstract class KeyProcessor
|
|
{
|
|
public abstract bool CanProcess(ExtractorType extractorType, string method, string keyUriText, string m3u8Content, ParserConfig parserConfig);
|
|
public abstract EncryptInfo Process(string method, string keyUriText, string m3u8Content, ParserConfig parserConfig);
|
|
}
|
|
}
|