mirror of
https://github.com/NohamR/N_m3u8DL-RE.git
synced 2025-08-26 23:19:43 +00:00
18 lines
538 B
C#
18 lines
538 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 uriText, ParserConfig parserConfig);
|
|
public abstract byte[]? Process(string method, string uriText, ParserConfig parserConfig);
|
|
}
|
|
}
|