Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update libsession #1527

Merged
merged 1 commit into from
Jun 28, 2024
Merged
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 libsession-util/libsession-util
Submodule libsession-util updated 57 files
+36 −65 .drone.jsonnet
+0 −1 .gitignore
+0 −3 .gitmodules
+20 −17 cmake/StaticBuild.cmake
+0 −13 external/CMakeLists.txt
+1 −1 external/nlohmann-json
+0 −1 external/protobuf
+0 −116 include/session/blinding.h
+3 −91 include/session/blinding.hpp
+0 −5 include/session/config/groups/keys.h
+4 −5 include/session/config/groups/keys.hpp
+0 −61 include/session/curve25519.h
+0 −35 include/session/curve25519.hpp
+0 −100 include/session/ed25519.h
+0 −55 include/session/ed25519.hpp
+0 −36 include/session/hash.h
+0 −22 include/session/hash.hpp
+0 −176 include/session/onionreq/builder.h
+0 −82 include/session/onionreq/builder.hpp
+25 −9 include/session/onionreq/channel_encryption.hpp
+2 −2 include/session/onionreq/parser.hpp
+0 −61 include/session/onionreq/response_parser.h
+0 −31 include/session/onionreq/response_parser.hpp
+0 −24 include/session/random.h
+0 −18 include/session/random.hpp
+0 −219 include/session/session_encrypt.h
+5 −137 include/session/session_encrypt.hpp
+0 −10 include/session/util.hpp
+5 −9 include/session/xed25519.h
+32 −2 proto/CMakeLists.txt
+1 −7 src/CMakeLists.txt
+26 −381 src/blinding.cpp
+1 −13 src/config/base.cpp
+1 −3 src/config/contacts.cpp
+2 −2 src/config/groups/info.cpp
+5 −5 src/config/groups/keys.cpp
+0 −3 src/config/user_profile.cpp
+0 −87 src/curve25519.cpp
+0 −148 src/ed25519.cpp
+0 −65 src/hash.cpp
+0 −275 src/onionreq/builder.cpp
+25 −24 src/onionreq/channel_encryption.cpp
+2 −3 src/onionreq/parser.cpp
+0 −113 src/onionreq/response_parser.cpp
+0 −29 src/random.cpp
+15 −588 src/session_encrypt.cpp
+10 −11 src/xed25519.cpp
+0 −4 tests/CMakeLists.txt
+0 −150 tests/test_blinding.cpp
+0 −51 tests/test_curve25519.cpp
+0 −88 tests/test_ed25519.cpp
+10 −17 tests/test_group_keys.cpp
+0 −50 tests/test_hash.cpp
+3 −3 tests/test_onionreq.cpp
+0 −16 tests/test_random.cpp
+1 −308 tests/test_session_encrypt.cpp
+12 −6 tests/test_xed25519.cpp