mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
12 lines
368 B
C#
12 lines
368 B
C#
using System.Text.RegularExpressions;
|
|
|
|
namespace ivinject.Common.Models;
|
|
|
|
internal static partial class RegularExpressions
|
|
{
|
|
[GeneratedRegex("cryptid 1", RegexOptions.Compiled)]
|
|
internal static partial Regex OToolEncryptedBinary();
|
|
|
|
[GeneratedRegex(@"\.(?:app|\w*ipa)$", RegexOptions.Compiled)]
|
|
internal static partial Regex ApplicationPackage();
|
|
} |