Jump to content

New Encryption Algorithm


Guest Camion

Recommended Posts

I'm currently coding an encryption algorithm based on Reversible Cellular Automata.

The original idea is from Stephen Wolfram.

What I do is :

loading the file into bitfield form.

The key is 1024bit and give me 128 type of transformations appliable on the bitfield (from the 256 possible elementary cellular automata rules). I apply this 128 transfo according to the key. Then I got two bitfields necessary to decypher the file.

The size of the file is doubled, so (we need two steps of transfo in order to reverse the transformation. I added a dependance on the step back in order to have a reversible transfo). This is the main issue.

Second issue is that is a symetric encryption.

 

The number of combinations giving a 1024bit key is :

256^128

WONDERFUL isn't it ?

 

The algorithm doesn't need math algebric formula, just 8 axioms per rule, just like the 256 elementary cellular automata of Wolfram.

 

The main info is that we have :

256^( (nb of bit of the key)/8 ) possibilities

 

So the nb of possibilities involved in order to break the algorithm is growing exponentially with the length of the key.

 

I have done the bitfield management code, the reversible cellular automata code, now I'm coding the clean application.

 

Anyone interested ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.