My entry? Done in C#.
Code:private string strEnc(string text) { string encrypt = ""; byte[] bytes = System.Text.Encoding.UTF8.GetBytes(text); for (int c = 0; c <= bytes.Length-1; c++) { encrypt += Convert.ToChar(bytes[c] - 5); } return encrypt; } private string strDec(string text) { string decrypt = ""; byte[] bytes = System.Text.Encoding.UTF8.GetBytes(text); for (int c = 0; c <= bytes.Length - 1; c++) { decrypt += Convert.ToChar(bytes[c] + 5); } return decrypt; }
Poll Results: 2014 - Most popular programmer goes to....
-
Arti
3 33.33% -
gameCheif
2 22.22% -
Stapled
4 44.44% -
Kings V
0 0%
You may not vote on this poll
9 Votes
Results 1 to 26 of 26
Threaded View
- 29 Oct. 2014 02:07am #7
Moderator Bachelor of Science in Virginity
- Age
- 31
- Join Date
- Nov. 2009
- Location
- Toronto
- Posts
- 5,421
- Reputation
- 546
- LCash (Rank 3)
- 1.96