clang-format: update latest spec and reformat
Copy the latest format file from the docs repository and apply.
Change-Id: I2a188ebd3faf376ecba3e20ef6a28ffbaa986628
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/crypt_algo.hpp b/crypt_algo.hpp
index e7af67f..534f1a0 100644
--- a/crypt_algo.hpp
+++ b/crypt_algo.hpp
@@ -73,8 +73,8 @@
* @return encrypted payload if the operation is successful
*
*/
- virtual std::vector<uint8_t>
- encryptPayload(std::vector<uint8_t>& payload) const = 0;
+ virtual std::vector<uint8_t> encryptPayload(
+ std::vector<uint8_t>& payload) const = 0;
/**
* @brief Check if the Confidentiality algorithm is supported
@@ -171,8 +171,8 @@
* @return encrypted payload if the operation is successful
*
*/
- std::vector<uint8_t>
- encryptPayload(std::vector<uint8_t>& payload) const override;
+ std::vector<uint8_t> encryptPayload(
+ std::vector<uint8_t>& payload) const override;
private:
/**