Proto Z String Crypt
Beta
IntroductionI've created my own string encryption system. I basically wanted to create this so I could have my
own secure way of accessing my mysql database between PHP and C#. I was working on my website then
I was going to make a C# program that acted as the admin page. Well at the time I didn't have the
C# method of PHP's crypt().
So I started working on my own and I say I've done a decent job at scrambling letters and numbers.
I'm putting this up to see if anyone can identify the pattern I used in my encryption system. Which
is basically how the letters from both the salt and word are placed, how the numbers are generated,
and whatnot.
I want to expand on this, create the system more complex and secure yet have the outcoming result simple.
Anyways, I've succeeded for my own personal needs for the method but I definitely would like to improve
on it.
Demos
So if you want to test and experiment with it, go right ahead. I've created the algorithm in both
PHP and C#.
PHP Web Version
C# Windows Version
NotesNow I'm not asking anybody to completely decrypt the pattern I've generated, I just want to see how
visible the patterns are to someone else.
At the time I do not plan on releasing the source. A side note, this method works like
PHP's crypt in a sense where theres no method for reversing the encrypted string. So basically...
User: password = haithar
Generates to - fjdsl8048923fds (not real end result

)
that code is then sent to the database to see if it matches with the recorded one. Basically the same
way RMX-OS is.