Posted 06 August 2013 - 05:07 PM
Hey does anybody has a good encryption in computercraft which is purely lua based (not peripheral mod / php based)
The encryption should have these things:
1. should be asynchronous
2. should be fast in crypt and decrypt
3. should be hard(1+ hours) to decrypt if somebody gets the source code of the encryption
I already made a pretty mean encryption it uses seeds with math.randomseed(changes every message) and also some sinus calculations.
The problem is it can get cracked instantly if somebody gets an encrypted message and the source code of the encryption.
That is what i am trying to fix… i tried rsa encryption but it was way to slow (5 minutes to encrypt and 12 to decrypt a 50 char text)
So my question would be:
Does somebody got a good encryption that would fix my problems?
UXELDUXEL
Btw: Yes i am trying to use this for rednet …
The encryption should have these things:
1. should be asynchronous
2. should be fast in crypt and decrypt
3. should be hard(1+ hours) to decrypt if somebody gets the source code of the encryption
I already made a pretty mean encryption it uses seeds with math.randomseed(changes every message) and also some sinus calculations.
The problem is it can get cracked instantly if somebody gets an encrypted message and the source code of the encryption.
That is what i am trying to fix… i tried rsa encryption but it was way to slow (5 minutes to encrypt and 12 to decrypt a 50 char text)
So my question would be:
Does somebody got a good encryption that would fix my problems?
UXELDUXEL
Btw: Yes i am trying to use this for rednet …