| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Cryptography API for Python
This is a simple cryptography service for Python. I created this during a mental ability class I was attending then. Basically, we all love to send messages that are really private that you don't want anyone else to see. So was it when the Germans working under the Nazi regime used the Enigma Machine to send coded stuff across the seas (unfortuantely, Alan J Turing broke into their secrets !). What if such a service is made available ?
This is where Code_Alpha comes in . This is basically a coding - decoding mechanism crafted in Python using simple logic (one that even the greatest fool may understand). So, as a part of trying to be honest, here's how the code goes:
So what you'll get now is :
H E L L O 1 2 3 4 5
H E L L O 0 1 2 3 4
26 * (the index you take) + (value of the letter in the series of alphabets in order)
Thus, HELLO is transformed into 8-31-64-90-119 .
This is how the code works. Interesting, right ? If you input a sentence, each word in the sentence is transformed into the corresponding numeric code.
code for "Thank you"
PS : There are a few things to be noted :
| Back | FazBrowse Home | New Git URL |