| 66 | } |
| 67 | |
| 68 | Status WriteStringToFileEncryptedSync(Env* env, const Slice& data, |
| 69 | const std::string& fname) { |
| 70 | return DoWriteStringToFile(env, data, fname, true, true); |
| 71 | } |
| 72 | |
| 73 | Status DoReadFileToString(Env* env, const std::string& fname, faststring* data, bool is_sensitive) { |
| 74 | data->clear(); |
nothing calls this directly
no test coverage detected