Please, any suggestion how to create encrypt method like md5
$pass = "abc";
$password = xyz($pass);
Above method i want to create it myself like md5 method
Please any help me, how can i create it.
Please, any suggestion how to create encrypt method like md5
$pass = "abc";
$password = xyz($pass);
Above method i want to create it myself like md5 method
Please any help me, how can i create it.
Take a look at this website to get an idea:
After that, when you know the "technique" of encrypting data try to implement it to the language of your choice. In this case if it's PHP you will have to crate a function which will handle the encryption for you.
Basically the system is unencrypted string comes in, encrypted string gets returned from the function. The difficulty and method of encryptment is completely up to you - if you want to have something that just moves character a number of places up or down, or if you want something more complex.