January 27
2009

RSA Cryptography in C# Tutorial Part 4a & b

C# Tutorial Windows

Decrypting the message is exactly the same process, but backwards.

January 27
2009

RSA Cryptography in C# Tutorial part 3b

C# Tutorial Windows

This is basically the same as 3a, but this example works for any bitstrength.

January 21
2009

RSA Cryptography in C# Tutorial Part 3a

C# Tutorial Windows

Next, is converting the plaintext into a byte array. This bit does get quite confusing, so just hope that it works.

January 18
2009

RSA Cryptography in C# Tutorial, Part 1

C# Tutorial Windows

I noticed when I wrote my RSA Crypto program that there was not that much on the internet about RSA in C#. Fortunately, .NET has a RSA algorithm, but it only accepts data in byte strings. This tutorial shows how to use RSA encryption in C# Programs. You will need: Visual C# 2008 express, Visual [...]

January 18
2009

RSA Cryptography in C# Tutorial

C# Tutorial Windows

I noticed when I wrote my RSA Crypto program that there was not that much on the internet about RSA in C#. Fortunately, .NET has a RSA algorithm, but it only accepts data in byte arrays. This tutorial shows how to use RSA encryption in C# Programs.

January 17
2009

RSA Crypto Program

C# Windows

RSA Crypto is a program that uses RSA encryption (a very strong type of encryption) to encrypt messages.