如何获取文件签名、文件类型(*.exe、*.js、*.msi、*.ocx、*.sys、*.vbs)?
我正在开发工具来使签名测试变得容易,我已经成功使用 .net C# 反射从 dll 文件中提取签名。 我想知道 C# 中的反射是否可以帮助我从下面的列表中获取签名,文件类型为:(*.exe、*.js、*.msi、*.ocx、*.sys、*.vbs)。
如果没有,那么我怎样才能获得签名(从上面的列表中)?
I am developing tool to make signature test be easy, already i succeeded to pull out signature from dll files using .net C# reflection.
i want to know if the reflection in C# will help me to get signature from the below list, files type :(*.exe, *.js, *.msi, *.ocx, *.sys, *.vbs).
if not, then how can i get the signature (from list above)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
反射只能用于反射 .NET 程序集(dll 和 exe 是 .NET 程序集)。
你不能反思其他类型。
从文件中获取
签名
是什么意思?Reflection can only be used to reflect over .NET assemblies (dll and exe that are .NET assemblies).
You cannot reflect over other types.
What do you mean by getting the
signature
from a file?使用以下:
将从所有想要的文件中获得版权。
Using below :
will get the copyright from all the wanted files.