Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.4 KB

File metadata and controls

46 lines (38 loc) · 1.4 KB
title C# Asymmetric String Encryption
keywords sample
summary Asymmetric String Encryption in C#
permalink csharp_asymmetric_string_encryption.html
folder C#
references
url description
C# Tipps und Tricks: RSA Verschlüsselung
authors
name url
Nico Rusam
current_reviews
last_updated 2018-07-24
tags
C#
CSharp
dotnet core
.net core
RSA
Asymmetric
String
Encryption

Use cases

  • All can encrypt a message using the public key, but only the recipient can decrypt it using the private key
  • Encrypt a string using the public key and decrypting it using the private key

Used .Net version

  • .Net Core 2.1

Example Code for C# based asymmetric key storage

{% include_relative csharp_cryptoexamples/src/ExampleAsymmetricStringEncryption.cs %}

{% include links.html %}