mirror of
https://github.com/NohamR/N_m3u8DL-RE.git
synced 2025-08-22 21:19:43 +00:00
18 lines
288 B
C#
18 lines
288 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace N_m3u8DL_RE.Common.Enum
|
|
{
|
|
public enum EncryptMethod
|
|
{
|
|
NONE,
|
|
AES_128,
|
|
AES_128_ECB,
|
|
SAMPLE_AES,
|
|
UNKNOWN
|
|
}
|
|
}
|