This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Security.Cryptography; | |
using System.Text; | |
/// <summary>Utility for analyzing compiled Sourcemod plugins.</summary> | |
/// <remarks> | |
/// Adapted from nosoop's read_sm_plugin.py gist, thanks for making a robust utility that still works after all the years! |