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 keywords summary permalink folder references authors current_reviews last_updated tags
C# Asymmetric String Encryption
sample
Asymmetric String Encryption in C#
csharp_asymmetric_string_encryption.html
C#
url description
C# Tipps und Tricks: RSA Verschlüsselung
name url
Nico Rusam
2018-07-24
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 %}