| 61 | return DoWriteStringToFile(env, data, fname, true, false); |
| 62 | } |
| 63 | Status WriteStringToFileEncrypted(Env* env, const Slice& data, |
| 64 | const std::string& fname) { |
| 65 | return DoWriteStringToFile(env, data, fname, false, true); |
| 66 | } |
| 67 | |
| 68 | Status WriteStringToFileEncryptedSync(Env* env, const Slice& data, |
| 69 | const std::string& fname) { |
nothing calls this directly
no test coverage detected