commit | c0f85486f0f8733ae0239e006ed14222640a13c7 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Mon Mar 03 16:49:57 2025 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Tue Mar 04 19:25:40 2025 -0500 |
tree | 409505dc6a914539377eaeb5729b09ad59f3ead7 | |
parent | 9c2e8362a5958524ca9cb6249e425673b5c288f4 [diff] |
fix struct and variable case styles Fix the following clang-tidy warnings: ``` /data0/jenkins/workspace/ci-repository/openbmc/estoraged/include/sanitize.hpp:41:37: error: invalid case style for struct 'mmc_io_multi_cmd_erase' [readability-identifier-naming,-warnings-as-errors] 41 | struct mmc_io_multi_cmd_erase data) = 0; /data0/jenkins/workspace/ci-repository/openbmc/estoraged/src/test/include/estoraged_test.hpp:48:30: error: invalid case style for parameter 'cipher_mode' [readability-identifier-naming,-warnings-as-errors] 48 | const char* cipher_mode, const char* uuid, /data0/jenkins/workspace/ci-repository/openbmc/estoraged/src/test/include/estoraged_test.hpp:49:30: error: invalid case style for parameter 'volume_key' [readability-identifier-naming,-warnings-as-errors] 49 | const char* volume_key, size_t volume_key_size, void* params), /data0/jenkins/workspace/ci-repository/openbmc/estoraged/src/test/include/estoraged_test.hpp:49:49: error: invalid case style for parameter 'volume_key_size' [readability-identifier-naming,-warnings-as-errors] 49 | const char* volume_key, size_t volume_key_size, void* params), /data0/jenkins/workspace/ci-repository/openbmc/estoraged/src/test/include/estoraged_test.hpp:55:25: error: invalid case style for parameter 'passphrase_size' [readability-identifier-naming,-warnings-as-errors] /data0/jenkins/workspace/ci-repository/openbmc/estoraged/src/test/include/estoraged_test.hpp:59:56: error: invalid case style for parameter 'requested_type' [readability-identifier-naming,-warnings-as-errors] 59 | (struct crypt_device * cd, const char* requested_type, ``` Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ib4c685db2037514b0517e42369b1d66b49b00e03
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.