我正在尝试在 C++ 中创建自定义 ofstream 类,它允许像这样使用:
RSAKeys keys = LoadRSAKeys("public.pub", "private.priv");
EncryptedOFStream encofstream("outputfile.txt", keys);
encofstream << "Some text";
// Now in outputfile.txt should be encrypted text
我有正确继承 ofstream 类的问题。使用过多 PHP 后,我的大脑受损。你能推荐一些基本的骨架吗?