Techniques for obscuring sensitive strings in C++

后端 未结 14 851
孤街浪徒
孤街浪徒 2020-12-12 12:12

I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:

std::         


        
14条回答
  •  天命终不由人
    2020-12-12 12:55

    Try this. The source code explains how to encrypt and decrypt on the fly all strings in a given Visual Studio c++ project.

提交回复
热议问题