Category - Cryptography
16 Aug 2022 16 Aug 2022 0 Comments  2885 Views
Here Mudassar Khan has explained with an example, how to encrypt and store Username or Password in SQL Server Database Table and then fetch, decrypt and display it in ASP.Net Core Razor Pages.

The Username or Password will be first encrypted using Symmetric (Same) key AES Algorithm and then will be stored in the database.

The Decryption will be done by fetching the encrypted Username or Password from Database and then decrypting it using the same key that was used for encryption.
16 Aug 2022 16 Aug 2022 0 Comments  8440 Views
Here Mudassar Khan has explained with an example, how to encrypt and store Username or Password in SQL Server Database Table and then fetch, decrypt and display it in ASP.Net Core MVC.

The Username or Password will be first encrypted using Symmetric (Same) key AES Algorithm and then will be stored in the database.

The Decryption will be done by fetching the encrypted Username or Password from Database and then decrypting it using the same key that was used for encryption.
13 Aug 2022 13 Aug 2022 0 Comments  8225 Views
Here Mudassar Khan has explained with an example, how to encrypt and store Username or Password in SQL Server Database Table and then fetch, decrypt and display it in ASP.Net MVC.

The Username or Password will be first encrypted using Symmetric (Same) key AES Algorithm and then will be stored in the database.

The Decryption will be done by fetching the encrypted Username or Password from Database and then decrypting it using the same key that was used for encryption.
11 Aug 2022 11 Aug 2022 0 Comments  1413 Views
Here Mudassar Khan has explained with an example, how to use encryption and decryption (Cryptography) in ASP.Net Core Razor Pages.

This article makes use of Symmetric (Same) key AES Algorithm for encryption and decryption process.
10 Aug 2022 10 Aug 2022 0 Comments  5233 Views
Here Mudassar Khan has explained with an example, how to use encryption and decryption (Cryptography) in ASP.Net Core MVC.

This article makes use of Symmetric (Same) key AES Algorithm for encryption and decryption process.
08 Aug 2022 08 Aug 2022 0 Comments  4285 Views
Here Mudassar Khan has explained with an example, how to use encryption and decryption (Cryptography) in ASP.Net MVC.

This article makes use of Symmetric (Same) key AES Algorithm for encryption and decryption process.
24 Apr 2019 15 Sep 2022 0 Comments  34452 Views
Here Mudassar Khan has explained with an example, how to encrypt data and store in Database in ASP.Net using C# and VB.Net.

This article will illustrate how to encrypt data before storing in Database using AES Symmetric key (Same key) algorithm and also decrypt it back when fetching the data from Database in ASP.Net using C# and VB.Net.
03 May 2014 03 May 2014 3 Comments  50957 Views
Here Mudassar Ahmed Khan has explained how to encrypt and decrypt XML File using C# and VB.Net.

The XML file will be uploaded for Encryption and Decryption of Files. For Encryption and Decryption of files, the AES Symmetric key (Same key) algorithm is used. The encrypted and decrypted files can be saved inside folders on disk or can be downloaded to client user.
27 Nov 2013 27 Nov 2013 2 Comments  46355 Views
Here Mudassar Ahmed Khan has explained how to encrypt and save AppSetting values in Web.Config or App.Config files and then fetch decrypt the encrypted AppSetting values in ASP.Net or Windows Application using C# and VB.Net.

The AppSetting values will be first encrypted using AES Symmetric key (Same key) algorithm and then the AppSetting values will be saved in Web.Config or App.Config files. When using it in program, the AppSetting values will be first fetched and then decrypted using AES Algorithm using the same key which was used for encryption.
16 Nov 2013 16 Nov 2013 7 Comments  125770 Views
Here Mudassar Ahmed Khan has explained how to encrypt and decrypt file such as Word (DOC, DOCX), Excel (XLS, XLSX), PDF, Text (TXT) documents or JPG, PNG or GIF Images using C# and VB.Net in ASP.Net website.

The file will be uploaded for Encryption and Decryption of Files. For Encryption and Decryption of files, the AES Symmetric key (Same key) algorithm is used. The encrypted and decrypted files can be saved inside folders on disk or can be downloaded to client user.
03 Nov 2013 03 Nov 2013 23 Comments  427849 Views
Here Mudassar Ahmed Khan has explained how to encrypt QueryString Parameter values and pass it to another page and then decrypt the encrypted QueryString Parameter values in ASP.Net using C# and VB.Net.

The QueryString Parameter values will be first encrypted using AES Symmetric key (Same key) algorithm, encoded (as the encrypted output might contain some special characters) and then will be sent to next page. On the destination page the QueryString Parameter values will be first decoded and then decrypted using AES Algorithm using the same key that was used for encryption.
18 Oct 2013 13 Aug 2022 26 Comments  522871 Views
Here Mudassar Khan has explained with an example, how to encrypt and store Username or Password in SQL Server database table and then fetch, decrypt and display it in ASP.Net using C# and VB.Net.

The Username or Password will be first encrypted using Symmetric (Same) key AES Algorithm and then will be stored in the database.

The Decryption will be done by fetching the encrypted Username or Password from Database and then decrypting it using the same key that was used for encryption.
06 Oct 2013 08 Aug 2022 26 Comments  339472 Views
Here Mudassar Khan has explained with an example, how to use encryption and decryption (Cryptography) in ASP.Net using C# and VB.Net.

This article makes use of Symmetric (Same) key AES Algorithm for encryption and decryption process.