我需要 sftp 服务器的密码作为我正在处理的 Magento 模块的配置字段。添加字段很简单,但 Magento 实际上并没有加密该值,因为它有一个frontend_type
of password
。
<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>
我无法找到有关如何正确加密此值的文档。如何确保密码存储在数据库中时得到加密?