What is Encryption and Data Signing? - microsoft solution framework

What is Encryption and Data Signing?

One major problem while downloading software from the internet is to be sure whether the software was modified as it was being downloaded or not. Encryption and data signing are a solution to this problem by ensuring authenticity and integrity of the software being downloaded. The idea of Data signing is that the sender signs the data and the receiver verifies the signature attached with the data.
When sender signs the data, a hash value of the data is created. This hash data is then decoded using a private key, this is termed as encryption. This private key is also then attached to the data being sent. The receiver extracts the data and the attached key from it. The receiver then creates a hash of the data and decrypts it using the private key and compares the 2 hash values for sign verification.
Matching signature confirms integrity of the downloaded data.
What is Code-Access security? - microsoft solution framework
Code-Access security allows code to be trusted to different levels depending upon the identity of the code or where it’s called from. This separates the code from the user’s permissions on a system.......
What is Role-based Security? - microsoft solution framework
Business applications often have a need to provide custom access to features, operations and resources based on the user. In such cases, we often use role based security which relates to user’s windows or custom identity........
Authentication providers supported by ASP.NET- microsoft solution framework
Authentication providers supported by ASP.Net are: Forms, Passport and Windows........
Post your comment