| 57 | } |
| 58 | |
| 59 | Status WriteStringToFileSync(Env* env, const Slice& data, |
| 60 | const std::string& fname) { |
| 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); |
nothing calls this directly
no test coverage detected