commit | ba000b9511d3d63a53cff3afcab49b8b42f7309e | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed May 10 14:48:57 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed May 10 14:48:59 2023 -0500 |
tree | 8a6e46e844e280c0da41357800c78eddff69f330 | |
parent | 04c28fad78934cab0c4cb0b4ef9a20f9261b4c1e [diff] |
clang-tidy: resolve 'readability-redundant-string-cstr' Eliminate needless `c_str()` call. ``` ../src/test/erase/crypto_test.cpp:67:20: error: redundant call to 'c_str' [readability-redundant-string-cstr,-warnings-as-errors] CryptErase(testFileName.c_str(), std::move(mockCryptIface)); ``` Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I1dce56443ca25172796f31e31d51f526c24fa18f
This daemon serves as an abstraction for an encrypted storage device, encapsulating the security functionality and providing a D-Bus interface to manage the encrypted filesystem on the device. Using the D-Bus interface, other software components can interact with eStoraged to do things like create a new encrypted filesystem, wipe its contents, lock/unlock the device, or change the password.