5
我需要sftp服務器的密碼作爲我正在處理的Magento模塊的配置字段。添加字段非常簡單,但Magento實際上並沒有對該值進行加密,僅僅因爲它的frontend_type
爲password
。自定義Magento管理員配置密碼加密
<sftp_password translate="label">
<label>SFTP Password</label>
<frontend_type>password</frontend_type>
<sort_order>170</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</sftp_password>
我一直沒能找到關於如何正確加密這個值的文檔。如何確保密碼存儲在數據庫中時被加密?
好奇,'密碼 '似乎和'obscure'完全相同。是否有區別,或者是否已被棄用? –
kojiro
Obscure延長密碼..查看我更新的帖子以獲取更多信息 –