标签: mysql encryption passwords repository credentials
说我有mysql凭据
用户名:mysqlusername 密码:letmein
用户名:mysqlusername
密码:letmein
在我的代码中,我将不得不使用这些凭据建立与数据库的连接。
但是,如果我使用公共存储库(例如github),我不想要一行代码
mysql_connect("localhost","mysqlusername","letmein","my_db");
因为那时任何人都可以看到这些凭据。
隐藏这些凭据的最佳方法是什么,同时仍将我的所有代码都放在公共存储库中?