简体   繁体   English

存储银行帐号

[英]storing bank account numbers

I need to store bank account information (account numbers and routing numbers) in order to send them payment. 我需要存储银行帐户信息(帐号和路由号码)才能向他们发送付款。

What solution do you guys suggest to be able to store these securely? 你们建议采用什么解决方案来安全地存储这些内容? I really don't want to store them in the mysql database without some form of encryption! 我真的不想在没有某种形式的加密的情况下将它们存储在mysql数据库中!

Is there a service that allows storing of bank account and other sensitive information that makes this information easily retrievable when needed? 是否有一项服务可以存储银行帐户和其他敏感信息,从而在需要时可以轻松检索此信息?

Take a look at the mcrypt php library: http://php.net/manual/en/book.mcrypt.php 看一下mcrypt php库: http : //php.net/manual/en/book.mcrypt.php

It will allow you to encrypt information and then store it anywhere you want. 它将允许您加密信息,然后将其存储在所需的任何位置。 (mysql, text, etc.) (mysql,文本等)

Make sure you use SSL (https) for transmitting the information from your web server to the client. 确保使用SSL(https)将信息从Web服务器传输到客户端。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM