Omnimaga

Calculator Community => TI Calculators => TI-BASIC => Topic started by: JustCause on December 01, 2010, 06:41:50 pm

Title: Secure (Ish) Cipher
Post by: JustCause on December 01, 2010, 06:41:50 pm
A simple example program that converts text to ciphertext and back again. Because it uses the rand seed, it's super-secure: unless someone knows it was coded on a calc, they're not getting it decoded.

Supports A-Z and spaces. Key can be any number.

Optimizations welcome.
Title: Re: Super Secure Cipher
Post by: SirCmpwn on December 01, 2010, 06:43:51 pm
Removed voluntarily by author.
Title: Re: Super Secure Cipher
Post by: AngelFish on December 01, 2010, 06:46:39 pm
A simple example program that converts text to ciphertext and back again. Because it uses the rand seed, it's super-secure: unless someone knows it was coded on a calc, they're not getting it decoded.

Supports A-Z and spaces. Key can be any number.

Optimizations welcome.

The calc uses L'Ecuyer's algorithm. It's not a very secure pseudo random generator.
Title: Re: Super Secure Cipher
Post by: DJ Omnimaga on December 02, 2010, 12:50:37 am
I do not know about encryption, but could you show examples of what would a certain word show up as when encrypted?

That said, although I think SirCmpwn's comment was uncalled for, it is pretty hard to have a secure encryption on a calc, even in BASIC. In my RPG The Reign of Legends 3, save files are compressed and encrypted using my own compression methods, but anyone who look at the code and understands BASIC could easily figure it out.
Title: Re: Super Secure Cipher
Post by: AngelFish on December 02, 2010, 12:56:58 am
 Looking at the code, that's actually a pretty good algorithm. What I would recommend is that you manipulate the strings during computation to take advantage of the avalanche effect in another way. It would also make it a lot more difficult to understand how the algorithm works. I have some example code I can post if you'd like.
Title: Re: Super Secure Cipher
Post by: DJ Omnimaga on December 02, 2010, 03:20:03 am
That would be cool :D
Title: Re: Super Secure Cipher
Post by: AngelFish on December 02, 2010, 03:24:02 am
Now where did Battlefield go...

Ah, here it is:

Code: [Select]
:" →Str2
:" →Str1
:Repeat length(Str2)=7
:Repeat Ans>40 and Ans<94 or Ans=102
:getKey→K
:End
:If Ans≠44 and Ans≠45 and Ans<94:Then
:Ans-20-5int(.1Ans
:Str2+sub("ABC  DEFGHIJKLMNOPQRSTUVWXYZ",Ans,1→Str2
:Text(26,2,sub(Str2,2,length(Str2)-1
:End
:If K=45 and length(Str2)>1:Then
:sub(Str2,1,length(Str2)-1→Str2
:Text(26,1,"                     "
:Text(26,1,Str2
:End
:If K=102:Then
:Str2+" →Str2
:Text(26,1,Str2
:End
:End


:sub(Str2,2,length(Str2)-1→Str2
:Text(26,2,Str2
:"TEYGJKMNOQRAUBCIVWDLEFHSZ "→Str3
:For(A,1,6
:Str1+sub(Str2,7-A,1)→Str1
:End
:sub(Str1,2,6→Str2
:For(A,1,6
:inString(Str3,sub(Str2,A,1→B
:length(Str3)→D
:(C-B)/(B+C)+B*C→C
:End

This is the reasonably fast algorithm I used in Battlefield. It's not the best one I had, but it's good enough. See if you can understand how it works.

Also, if following the program flow gives you a headache, you should have seen the previous version  :devil:

On a side note, this is about as close to SMC as you can get in BASIC without a ton of Goto statements.
Title: Re: Super Secure Cipher
Post by: DJ Omnimaga on December 02, 2010, 03:35:42 am
I'll probably have to concentrate a bit to understand. I have troubles reading other people code. ;D
Title: Re: Super Secure Cipher
Post by: AngelFish on December 02, 2010, 03:37:40 am
Following the String manipulation is the difficult part. Try to concentrate on the second part (after
":sub(Str2,2,length(Str2)-1→Str2")
Title: Re: Super Secure Cipher
Post by: DJ Omnimaga on December 02, 2010, 03:42:34 am
I'll probably also have to run parts of the program a few times to analyze it, since I'm more visual. :P
Title: Re: Super Secure Cipher
Post by: AngelFish on December 02, 2010, 03:45:42 am
Here's the routine in a BASIC program
Title: Re: Super Secure Cipher
Post by: DJ Omnimaga on December 02, 2010, 03:51:42 am
Oh thanks that might save me some time lol, although since your code was in SourceCoder format (noticing the STO symbol used) I could have copied it on my calc. :D

Being visual is most likely what hindered me when I tried to learn ASM from ASM in 28 days D:
Title: Re: Super Secure Cipher
Post by: AngelFish on December 02, 2010, 03:54:04 am
I already had the routine open in sourcecoder and that way everyone can try the code for themselves, rather than having to copy it into their calc.
Title: Re: Secure (Ish) Cipher
Post by: JustCause on December 02, 2010, 10:46:21 am
Topic title changed. To be fair, when I said "secure" I meant "your crypto nerd friends will go at it for about a week," rather than "1024-bit RSA suitable for issues of national security."

Though I did make 16-bit RSA once. :)
Title: Re: Secure (Ish) Cipher
Post by: DJ Omnimaga on December 02, 2010, 07:20:53 pm
How long does a 16 bit key takes to get factored on-calc? What about a recent computer?
Title: Re: Secure (Ish) Cipher
Post by: AngelFish on December 02, 2010, 08:42:46 pm
It takes forever to pick the key to begin with.
Title: Re: Secure (Ish) Cipher
Post by: jnesselr on December 02, 2010, 08:51:48 pm
How long does a 16 bit key takes to get factored on-calc? What about a recent computer?
16 bits means 2^16 possibilities or 65,536 different options.  So about a millisecond either way. (Depending on the algorithm.  Counting 1-256 would be faster, and that's all you need to count to find factors)

Also, sadly, I just became un-evil'ed.
Title: Re: Secure (Ish) Cipher
Post by: DJ Omnimaga on December 03, 2010, 01:51:13 am
I see, pretty fast then, lol. :P
Title: Re: Secure (Ish) Cipher
Post by: JustCause on December 03, 2010, 09:46:54 am
How long does a 16 bit key takes to get factored on-calc? What about a recent computer?
...okay, so it can be human-factored in under 5 minutes. It was a proof of concept XD
Title: Re: Secure (Ish) Cipher
Post by: DJ Omnimaga on December 03, 2010, 05:20:56 pm
To discourage people from cheating in BASIC games by modifying save data, if you can't use a complex encryption method and the save files can be decrypted pretty fast, I just make the save file be deleted completely upon game loading if the game detects it was modified and has invalid values. In Mana Force 2, when you tried to load a save file where you're Level 120 for example, it started a new game instead.