- Authentication – it is the process of ensuring the user’s identity and authenticity. ASP.Net allows four types of authentication system:
- Windows Authentication
- Forms Authentication
- Passport Authentication
- Custom Authentication
- Authorization – it is the process of defining and allotting specific roles to specific users.
- Confidentiality – it involves encrypting the channel between the client’s browser and the web server.
- Integrity – it involves maintaining the integrity of data. For example, implementing digital signature.
From a VS.NET command prompt, enter the following: 1. Generate a KeyFile sn -k keyPair.snk 2. Get the MSIL for the assembly ildasm SomeAssembly.dll /out:SomeAssembly.il 3. Rename the original assembly, just in case ren SomeAssembly.dll SomeAssembly.dll.orig 4. Build a new assembly from the MSIL output and your KeyFile ilasm SomeAssembly.il /dll /key= keyPair.snk more read visit : http://www.geekzilla.co.uk/ViewCE64BEF3-51A6-4F1C-90C9-6A76B015C9FB.htm
Comments
Post a Comment