- #1
moonman239
- 282
- 0
Help me develop a public-key system (for fun) :)
I just read up on public-key encryption and now I'm kind of interested in building an algorithm of my own. How about something like this:
1) Alice could type her message to Bob into a computer
2) The computer converts the letters and characters into numbers.
3) The computer then uses Alice's public key to determine how to sort the digits.
4) The computer then uses Bob's private key to change the message to throw off frequency analysis. For example if 4 appears more frequently than 2, Bob's public key dictates that at least one 4 should be replaced with a number that will now appear more or less frequent than the 4.
5) Alice then sends this message to Bob, whose computer decrypts the message.
I just read up on public-key encryption and now I'm kind of interested in building an algorithm of my own. How about something like this:
1) Alice could type her message to Bob into a computer
2) The computer converts the letters and characters into numbers.
3) The computer then uses Alice's public key to determine how to sort the digits.
4) The computer then uses Bob's private key to change the message to throw off frequency analysis. For example if 4 appears more frequently than 2, Bob's public key dictates that at least one 4 should be replaced with a number that will now appear more or less frequent than the 4.
5) Alice then sends this message to Bob, whose computer decrypts the message.