clang-format: copy latest and re-format

clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.

Change-Id: I862ed296ce1f42dba7047a74540d9004ad78130c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/crypt_algo.hpp b/crypt_algo.hpp
index 1064772..6a8c25d 100644
--- a/crypt_algo.hpp
+++ b/crypt_algo.hpp
@@ -43,8 +43,7 @@
     /**
      * @brief Constructor for Interface
      */
-    explicit Interface(const std::vector<uint8_t>& k2) : k2(k2)
-    {}
+    explicit Interface(const std::vector<uint8_t>& k2) : k2(k2) {}
 
     Interface() = delete;
     virtual ~Interface() = default;
@@ -143,8 +142,7 @@
      *
      * @param[in] - Session Integrity key
      */
-    explicit AlgoAES128(const std::vector<uint8_t>& k2) : Interface(k2)
-    {}
+    explicit AlgoAES128(const std::vector<uint8_t>& k2) : Interface(k2) {}
 
     AlgoAES128() = delete;
     ~AlgoAES128() = default;