2017-10-12 72 views
0

我正在使用自定義My_encrypt.php Lib文件。如何減少codeigniter中輸出加密的長度

$this->encrypt->encode(1); 

輸出:

roI2urYfzQClEpLvatI8A8ZTrRkwEduAmMWllVBBLoaucnB0t2UCXcFVCiprA9aMOhP7T4wZb0ZOhKRTvWvslQXX 

如何降低該輸出的長度。我知道這是好的,但我需要這個

+0

您可以使用'$ this-> encryption-> initialize'方法嘗試編碼文檔中列出的不同密碼和模式。 (https://www.codeigniter.com/user_guide/libraries/encryption.html#configuring-the-library)[https://www.codeigniter.com/user_guide/libraries/encryption.html#configuring-the-library] – MarioZ

+0

ohk謝謝。我會嘗試。 –

回答

0

如何減少這個輸出的長度。

爲什麼你想這樣做嗎? CodeIgniter提供的加密方法是使用經過身份驗證的加密。沒有完整性的保密性與沒有保密性是一樣的。

您是否試圖加密URL的數據庫ID? See this instead