Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion amp-embedded-infra-lib
Submodule amp-embedded-infra-lib updated 65 files
+1 −1 .clusterfuzzlite/Dockerfile
+1 −1 .devcontainer/Dockerfile
+20 −20 .github/workflows/ci.yml
+1 −1 .github/workflows/dependency-scanner.yml
+3 −3 .github/workflows/documentation.yml
+4 −4 .github/workflows/linting-formatting.yml
+3 −3 .github/workflows/release-please.yml
+2 −2 .github/workflows/security.yml
+5 −5 .github/workflows/static-analysis.yml
+2 −2 .github/workflows/validate-pr.yml
+1 −0 .mega-linter.yml
+4 −4 documents/modules/ROOT/pages/Sesame.adoc
+1 −0 external/protoc/CMakeLists.txt
+2 −2 hal/generic/FileSystemGeneric.cpp
+1 −1 hal/generic/FileSystemGeneric.hpp
+3 −1 hal/interfaces/FileSystem.hpp
+2 −2 hal/interfaces/test_doubles/FileSystemStub.cpp
+1 −1 hal/interfaces/test_doubles/FileSystemStub.hpp
+2 −0 protobuf/echo/CMakeLists.txt
+4 −229 protobuf/echo/Echo.cpp
+26 −51 protobuf/echo/Echo.hpp
+248 −0 protobuf/echo/EchoOnStreams.cpp
+72 −0 protobuf/echo/EchoOnStreams.hpp
+1 −1 protobuf/echo/TracingEcho.hpp
+1 −1 protobuf/echo/test_doubles/EchoMock.hpp
+1 −1 protobuf/echo/test_doubles/EchoSingleLoopback.hpp
+1 −0 services/CMakeLists.txt
+2 −6 services/ble/ClaimingGattClientAdapter.cpp
+7 −0 services/echo_console/CMakeLists.txt
+73 −2 services/echo_console/Console.cpp
+25 −0 services/echo_console/Console.hpp
+76 −11 services/echo_console/Main.cpp
+1 −1 services/network/EchoOnConnection.hpp
+1 −0 services/network/HttpClientBasic.cpp
+12 −0 services/network/TracingHttpClientImpl.cpp
+5 −0 services/network/TracingHttpClientImpl.hpp
+13 −0 services/sesame_key_generator/CMakeLists.txt
+101 −0 services/sesame_key_generator/Main.cpp
+19 −0 services/tracer/TracingEchoInstantiation.cpp
+27 −24 services/tracer/TracingEchoInstantiation.hpp
+33 −0 services/tracer/TracingEchoInstantiationSecured.cpp
+91 −25 services/tracer/TracingEchoInstantiationSecured.hpp
+4 −4 services/util/CMakeLists.txt
+19 −0 services/util/EchoInstantiation.cpp
+29 −37 services/util/EchoInstantiation.hpp
+34 −0 services/util/EchoInstantiationSecured.cpp
+65 −29 services/util/EchoInstantiationSecured.hpp
+1 −1 services/util/EchoOnMessageCommunication.hpp
+5 −0 services/util/EchoOnSesame.cpp
+3 −2 services/util/EchoOnSesame.hpp
+44 −25 services/util/EchoPolicyDiffieHellman.cpp
+26 −14 services/util/EchoPolicyDiffieHellman.hpp
+21 −20 services/util/EchoPolicySymmetricKey.cpp
+13 −12 services/util/EchoPolicySymmetricKey.hpp
+13 −2 services/util/SesameCobs.hpp
+10 −2 services/util/SesameCryptoMbedTls.cpp
+1 −0 services/util/SesameCryptoMbedTls.hpp
+46 −0 services/util/SesameSecured.cpp
+12 −1 services/util/SesameSecured.hpp
+12 −0 services/util/SesameSecurity.proto
+5 −0 services/util/SesameWindowed.hpp
+2 −2 services/util/test/CMakeLists.txt
+54 −2 services/util/test/TestEchoOnSesame.cpp
+35 −31 services/util/test/TestEchoPolicyDiffieHellman.cpp
+22 −15 services/util/test/TestEchoPolicySymmetricKey.cpp
Loading