This question shows research effort; it is useful and clear
4
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
暗号化されたファイル ストリームを作成する方法はありますか?
私はこのようなことをしたい:
string myString;
fstream myStream;
myStream.create("my path", "my password", cipherAlgorithm);
myStream.write(myString); - this code saves my string to an encrypted stream
myStream.close();