component securiry
.NET (Core and Framework)
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I have created a DLL component in Vb.net, i want no other project/person use my component, how to stop outside access . Advance Thanks aB:doh:
Baste wrote: I have created a DLL component in Vb.net, i want no other project/person use my component, how to stop outside access . You could use an obfuscator on the assembly to prevent people disassembling the IL. And you could also have an Auth(string passwd) method which has to be called first before any of the other exposed interfaces work properly.