Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请,任何建议如何创建像 md5 这样的加密方法
$pass = "abc"; $password = xyz($pass);
上面的方法我想像 md5 方法一样自己创建它
请任何帮助我,我该如何创建它。
看看这个网站以获得一个想法:
http://lifehacker.com/5856506/how-to-create-a-personal-information-encryption-scheme-to-easily-hide-your-data-in-plain-sight
之后,当您了解加密数据的“技术”时,请尝试将其实现为您选择的语言。在这种情况下,如果它是 PHP,您将不得不创建一个函数来为您处理加密。
基本上系统是未加密的字符串进来,加密的字符串从函数中返回。加密的难度和方法完全取决于您 - 如果您想要一些只是将字符向上或向下移动多个位置的东西,或者如果您想要更复杂的东西。