Restrict access to .NET assembly?

后端 未结 2 1766
长情又很酷
长情又很酷 2020-12-29 15:34

Is there a way to have a .NET assembly accessible for only authorized sources?

I mean I want to have a DLL that contains components, but I don\'t want anyone to be a

相关标签:
2条回答
  • 2020-12-29 16:17

    The problem with Internal classes is Internal has no meaning in IL and the classes can be called via reflection. So using InternalsVisibleTo is more a helper for the compiler than anything else.

    You can go one step further using the StrongNameIdentityPermission which will check the public key of the strong named assembly calling into the code - if the public key doesn't match then a security exception is thrown. This is enforced even when code is called via reflection.

    0 讨论(0)
  • 2020-12-29 16:19

    You can create internal classes. And the give your specified assemblies to access these classes by using InternalsVisibleTo attribute.

    The assembly should be strong named. You can find more information about the attribute in this article.

    0 讨论(0)
提交回复
热议问题