Password storage in source control

后端 未结 6 1632
独厮守ぢ
独厮守ぢ 2020-12-08 05:13

We store all our application and db passwords in plain text in source control. We do this as our build/deploy process generates required configuration files and also does a

6条回答
  •  [愿得一人]
    2020-12-08 05:56

    If doing in C you could store in as an array of characters and put the characters in as decimal references. Not sure if this will break strings or not, but might help to alleviate some of that problem.

    char pass[]={72, 101, 108, 108, 111};
    

提交回复
热议问题