TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About decrypt
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Akshay Patel (5)
Vignesh Kumar (4)
Nikunj Satasiya (2)
Nilesh Jadav (2)
Vijayaragavan S (2)
Sangeetha Sundaramoorthy (2)
Dinesh Beniwal (2)
Syed Shakeer (2)
Saineshwar Bageri (2)
Kishor Bikram Oli (2)
Brijesh Jalan (2)
Velladurai (1)
Ajay Yadav (1)
Sarthak Varshney (1)
Vikas Gupta (1)
Shubham Kumar (1)
Santhosh Teja (1)
Ziggy Rafiq (1)
Kunal Patil (1)
Monica Rathbun (1)
Kjetil Roe (1)
Kirtesh Shah (1)
Keyur (1)
Ajay Kumar (1)
Vaibhav Patil (1)
Jaydip Trivedi (1)
Uday Dodiya (1)
Vivek Kumar (1)
Muhammad Shakir (1)
Manish Dwivedi (1)
Mudita Rathore (1)
Sibeesh Venu (1)
Gopi Chand (1)
Abhishek Dubey (1)
Priyaranjan K S (1)
Srihari Chinna (1)
Mahesh Verma (1)
Ramesh Palanivel (1)
Sijo Vincent (1)
Janak Shrestha (1)
Dominique Ceja (1)
Selva Ganapathy (1)
Ramesh Maruthi (1)
Rumman Siddiqui (1)
Bechir Bejaoui (1)
Dipal Choksi (1)
Sushmita Kumari (1)
Diptimaya Patra (1)
Moses Soliman (1)
Nenad Djodievic (1)
Soft Corner (1)
Krishna Garad (1)
Related resources for decrypt
No resource found
Encryption and Decryption using AES in .NET Core and .NET Framework
9/2/2024 7:24:40 AM.
AES (Advanced Encryption Standard) is a symmetric encryption algorithm using the same key for both encryption and decryption. In C#, AES encryption involves setting up a RijndaelManaged instance with
RSA Encryption and Decryption in .NET Core and Framework Explained
8/30/2024 9:37:27 AM.
The RSA algorithm is an asymmetric cryptography method that uses a pair of keys: a public key for encryption and a private key for decryption. This example demonstrates how to use the BouncyCastle lib
Encryption and Decryption using RSA (asymmetric) in Angular
8/30/2024 8:35:23 AM.
This guide explores implementing RSA asymmetric encryption and decryption in Angular. It covers how to integrate RSA public and private key pairs for secure data transmission.
Encryption and Decryption using AES (Symmetric) in Angular
8/30/2024 5:01:16 AM.
AES (Advanced Encryption Standard) is a symmetric encryption algorithm used for secure data transmission. Implement AES in Angular using the crypto-js library, supporting modes like CBC, ECB, and CTR,
Encrypting and Decrypting Files using .NET Core
7/28/2024 1:06:15 PM.
Learn how to implement AES encryption and decryption in .NET Core with a detailed guide. Secure your sensitive data using systematic file encryption techniques. This comprehensive tutorial will equip
C# Method Designed to Make a POST Request to a Web API Endpoint
7/4/2024 5:31:08 AM.
This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practi
Bypassing Obfuscation: Ciphered Code Reverse Engineering
5/8/2024 10:13:08 AM.
In this article, we have performed reverse engineering over a protected binary by deep analysis of both obfuscated source code and MSIL assembly code.
How Secure Sockets Layer (SSL) Protects Data Online?
5/7/2024 5:53:30 AM.
Learn how SSL works in a step-by-step guide for beginners and professionals, ensuring secure internet communication and data protection.
Encryption for Data Security: Creating Digital Certificates
5/6/2024 6:15:44 AM.
Encryption secures data by converting it into unreadable ciphertext using algorithms and keys, preventing unauthorized access. SSL/TLS certificates enable secure communication between websites and use
Text Encrypt and Decrypt With a Specified Key
4/25/2024 8:05:19 AM.
Encrypting and decrypting text with a specified key involves using cryptographic algorithms to convert plain text into cipher text and vice versa, ensuring data security. The key serves as the paramet
How To Encrypt And Decrypt In C# Using Simple AES Keys
4/12/2024 11:29:58 AM.
Learn how to encrypt and decrypt data in C# using simple AES keys. AES, a symmetric encryption algorithm, ensures secure communication by encoding and decoding messages.
Security ASP.net Core MVC (C#) Encryption and Decryption
4/9/2024 6:14:18 PM.
On the topic of "Security in ASP.NET Core MVC (C#): Encryption and Decryption," Ziggy Rafiq has written an insightful article. As Ziggy explores encryption and decryption techniques, he offe
Implementation of Base64 Encryption/Decryption in Power App
4/5/2024 7:12:00 AM.
Base64 is a method for encoding binary data into text, ensuring data integrity during transmission. Implemented in Power Apps using Power Fx, it's vital for tasks like email (MIME), XML, or JSON d
How To Get Started With Always Encrypted For Beginners - Part Two
3/28/2024 6:26:09 AM.
In this post we will pick up where we left off in Part 1, if you haven’t read that please go back and do so. Now that we have encrypted our columns, it’s time to take a look at how we decrypt them ins
Xite Encryption
1/31/2024 10:06:02 AM.
This code provides an easy-to-use encryption and decryption solution in C#. It utilizes RSA cryptography, allowing seamless integration into Visual Studio projects. This class contains methods/functio
ASP.NET Core Data Protection API
12/11/2023 6:40:33 AM.
ASP.NET Core Data Protection API. In web applications, ensuring authenticity is pivotal during round trips. This article delves into the Asp.Net Core Data Protection API, discussing its implementation
TripleDES Encryption and Decryption in C#
10/16/2023 5:35:37 AM.
Encryption is the process of rendering data unreadable to safeguard it from unauthorized access. It's widely applied in banking, e-commerce, communication, and security. TripleDES (Triple Data Enc
Create Encrypted AES Files and Decrypt AES Encrypted Files in C#
10/6/2023 9:46:22 AM.
How to Create Encrypted AES Files and Decrypt AES Encrypted Files in C#
How to Decrypt data using RSA algorithm in C#?
10/3/2023 6:55:16 AM.
In this article, we have sample code for decrypt an encrypted data with help of RSA Decryption algorithm and .pfx file which contains private key for decryption.
Hill Cipher In C#
9/20/2023 9:38:38 AM.
Hill Cipher is a polygraphic substitution cipher that encrypts and decrypts plaintext into ciphertext and vice versa using matrix operations. It is more secure than traditional Caesar ciphers and subs
Cryptography actions with File in Desktop flow using Microsoft Power Automate
6/16/2023 7:31:15 AM.
Reading this article, you can learn how to encrypt or decrypt a file using Encrypt from file with AES action and Decrypt to file with AES action with the Desktop flow in Microsoft Power Automate
Cryptography Actions with Plain Text in Desktop Flow using Microsoft Power Automate
6/15/2023 4:42:49 AM.
Reading this article, you can learn how to encrypt or decrypt plain text using Encrypt text with AES action and Decrypt text with AES action with Desktop flow in Microsoft Power Automate.
Encryption and Decryption in ASP.NET Windows Console Application using C#
5/22/2023 10:09:44 AM.
In this article, I have explained how to encrypt and decrypt the text using the AES Encryption standard. Open Visual Studio, Create a new console application.
GCM mode Encryption and Decryption in ASP.NET Console App
5/15/2023 5:31:44 AM.
In this article, I have explained how to encrypt and decrypt the text using AES Encryption standard using GCM mode.
Encryption - Decryption In JavaScript Like A Student Thought
3/17/2023 8:56:39 AM.
In this article, you will learn about Encryption - Decryption in JavaScript.
How to Decrypt a File in C#
2/8/2023 2:27:20 AM.
The File.Decrypt method decrypts a file in C#.
How to Encrypt a File in C#?
2/8/2023 2:17:45 AM.
File class provides a method to ecrypt a file. Learn how to Encrypt a File in C#.
Encrypt and Decrypt in SQL Server: Part 1
2/3/2023 8:00:29 AM.
In this article, we will discuss Service Master Key, backup, restore and alter Service Master Key.
Best Algorithm For Encrypting And Decrypting A String In C#
1/31/2023 8:51:53 AM.
In this article, we learn about how to encrypt and Decrypt a String in C#.
How to Encrypt and Decrypt a Password
1/31/2023 6:03:32 AM.
How to Encrypt and Decrypt a Password using EncryptByPassPhrase and DecryptByPassPhrase.
How to Encrypt and Decrypt Text
1/30/2023 6:36:15 AM.
This article explains how to Encrypt and Decrypt text.
Encryption And Decryption Using A Symmetric Key In C#
1/30/2023 6:21:47 AM.
In this article, we are going to learn how to use the symmetric key for encrypting and decrypting data in C#.
Encrypt and Decrypt in SQL Server: Part 5
1/19/2023 9:12:44 AM.
In this article, we will create a symmetric key and encrypt and decrypt string using this key.
Encrypt and Decrypt in SQL Server: Part 4
1/19/2023 9:00:52 AM.
In this article, we will encrypt plain text and decrypt encrypted text using the asymmetric key.
Encrypt and Decrypt in SQL Server: Part 3
1/19/2023 8:50:44 AM.
In this article, we will generate a certificate and using this certificate we will encrypt and decrypt the string.
Encrypt and Decrypt in SQL Server: Part 2
1/19/2023 8:34:02 AM.
In this article, we will discuss Database Master Key. The database master key is a symmetric key used to protect the private keys of certificates and asymmetric keys that are present in the database.
Encrypt a File Using Rijndael
8/22/2022 8:52:57 AM.
In this article, we will encrypt a file and embed an encrypted key through which we encrypt that file.
Encrypt in JavaScript and Decrypt in C# With AES Algorithm
1/7/2022 11:46:08 AM.
In this article I am going to show you how to encrypt Client side values in JavaScript and decrypt in C# with AES algorithm in ASP.NET web forms.
Encrypting and Decrypting Cookies in ASP.NET 2.0
2/3/2021 9:18:44 AM.
This article demonstrate how to encode and decode cookies in ASP.NET 2.0
Encrypt and Decrypt Text in Web API
1/29/2021 7:25:12 AM.
In this article I will show you how to encrypt and decrypt text.
Encrypt And Decrypt Connection String In Web.Config File
1/5/2021 11:51:07 AM.
In this article we are going to see how we can encrypt and secure our connection string in our web config file.
How to Encrypt and Decrypt the String in Java Without Using Any Algorithm
9/26/2019 6:54:49 AM.
This article teaches you how a string can be simply encrypted & decrypted in Java.
Working With Cipher Class in Java
9/17/2019 6:42:03 AM.
In this article, we are going to describe crypto graphic data security by using cipher class of java. I describe a Cipher class with its constructor or method details.
Implement Column Level Encryption/ Decryption In SQL Server 2016
7/8/2019 11:46:05 PM.
This article familiarizes you with implementing column level encryption/decryption in SQL Server 2016.
Data Encryption and Decryption in SQL Server 2008
6/11/2019 4:32:33 AM.
Cryptography can be implemented in the SQL Server. This article explains about the encryption and decryption of data in SQL Server.
Encryption and Decryption Using Cryptool
5/28/2019 9:21:01 AM.
Cryptool is an open-source freeware for encryption. In this article, learn how to encrypt and decrypt using Cryptool.
AES Encryption/Decryption With Angular 7
1/16/2019 10:40:53 PM.
In this article, I am going to explain AES encryption/decryption with Angular 7 so that we can communicate with each other securely via an Angular app.
An Easy Way To Encode And Decode File In ASP.NET
10/16/2017 12:41:16 AM.
In this article, I’ll explain a way to encode and decode a file in ASP.NET using C# and VB.NET with example.
Encrypt And Decrypt User Password In SQL Server DB Using C# Winform Application
9/18/2017 5:10:07 PM.
In this article we are going to learn how to maintain the user login details in sql server table with password encryption format and decrypt the user password and validate the credentials in login for
What Is Encryption/Decryption And How It Is Used In ASP.NET
8/21/2016 7:00:21 PM.
In this article, you will learn what is encryption/decryption and how it is used in ASP.NET.
Encrypt And Decrypt String In Windows Runtime Apps
4/28/2016 11:20:35 AM.
In this article, we will learn how to encrypt and decrypt string in Windows Runtime apps.
Encrypt And Decrypt Files In Windows Runtime Apps Using Windows Cryptography Technique
4/25/2016 11:24:37 AM.
In this article, we will learn how to encrypt and decrypt files in Windows Runtime apps.
Data Encryption And Decryption in C#
9/3/2015 12:03:48 PM.
In this article you will learn about data encryption and decryption in C#.
SQL Server 2016: Always Encrypted Feature
5/22/2015 1:07:53 AM.
I want to discuss today a new feature, Always Encrypted, that was highlighted in the SQL Server 2016.
Encrypt in JavaScript and Decrypt in C# With AES Algorithm in ASP.Net in MVC 4
1/26/2015 6:26:18 PM.
This article shows how to encrypt on the client side values in JavaScript and decrypt in C# with AES algorithm in ASP.NET MVC 4.
Simple Steganography; Encryption and Decryption of Huge Messages of Any Language
10/31/2013 3:27:53 PM.
As we know, Steganography is the art and science of writing hidden messages in such a way that no one, apart from the sender and intended recipient, suspects the existence of the message. Here we hide the huge message within an image.
Registration Page Without Encryption and Decryption
9/6/2013 11:26:26 AM.
A basic registration page without any encryption and decryption.
Secure Mailing
12/19/2012 9:41:19 PM.
This application an be used to encrypt a text message using AES encryption as well as send it to the person whose email is provided. This could be used as the security software for any of us. But to decrypt the encrypted text one must have the same application.
Encrypt and Decrypt Sensitive Metadata Within Your Config file
10/4/2012 9:54:52 AM.
In a certain cases, metadata embedded within your configuration file is sensitive. In fact, imagine that you develop an application that uses a data base as data source; all information about this data base is located in the configuration file. What if a hacker success to log into your configuration files and obtains the connection string and other metadata about your data base??
Encrypting Connection Strings in ASP.Net 2.0
10/3/2012 12:26:44 PM.
This article describes how to encrypt the connection strings section in ASP.Net 2.0 web.config files and demonstrates the transperancy of using encrypted connection strings in your web application.
How Easy Cryptography is in VS.Net
10/1/2012 9:02:32 AM.
What can be done regarding the security issues? Part of the solution is to secure important data - more specifically, using strong encryption thats what we will see in this article.
Triple DES Encryption and Decryption in WPF
9/29/2012 9:06:18 AM.
In this article we will see how a set of data can be encrypted and saved in file and again while reading it should be readable/decrypted based on key.
How we Decrypt the Text File using DES Method in ASP.Net: Part 2
5/15/2012 6:50:45 PM.
In this article we will learn how to decrypt a Encrypted text file.
Using the DPAPI through ProtectedData Class in .Net Framework 2.0
5/13/2012 3:21:02 AM.
The objective of this tutorial is to show how the DPAPI can be used to encrypt and decrypt data. Encrypt some data using ProtectedData Class in System.Security.Cryptography namespace and save it to a file. Show that the data can be decrypted using the same class but deferent method. Login as a different user,and show that the data cannot be decrypted.
File Encryption
5/13/2012 3:14:24 AM.
The classes in the .Net Framework cryptography namespace manage many details of cryptography for you.
Query String Encryption & Decryption Technique in ASP.Net 3.5
3/31/2011 12:29:29 AM.
ASP.Net 3.5 Query String Encryption & Decryption Technique.
Encryption and Decryption of Text in Asp.Net
1/21/2011 4:20:27 PM.
In this article we will see how to encrypt the messages and again decrypt the encrypted messages. Those days we need more sequrity for hiding our personal messages; .Net provide various ways to encrypt and again decrypt those messages.
Public Key Encryption (RSA Method) for Encryption and Decryption in ASP.Net
8/19/2010 4:32:06 AM.
In this article we will learn how use Public Key Encryption for Encryption and Decryption in ASP.Net