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.
私は Cakephp 2.1 を使用しています。
文字列を暗号化および復号化するにはどうすればよいですか。
CakePHPのドキュメントに従って:
my_key で秘密のパスワードを暗号化する
$secret = Security::cipher('my secret password', 'my_key');
秘密のパスワードを後で解読する
$nosecret = Security::cipher($secret, 'my_key');