Skip to content

Commit

Permalink
Merge pull request #1542 from bemusementpark/update-lib
Browse files Browse the repository at this point in the history
Update libsession
  • Loading branch information
bemusementpark authored Jul 11, 2024
2 parents b510b06 + 5fd2a88 commit 8b230bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsession-util/libsession-util
Submodule libsession-util updated 65 files
+65 −36 .drone.jsonnet
+1 −0 .gitignore
+3 −0 .gitmodules
+17 −20 cmake/StaticBuild.cmake
+13 −0 external/CMakeLists.txt
+1 −1 external/nlohmann-json
+1 −0 external/protobuf
+116 −0 include/session/blinding.h
+91 −3 include/session/blinding.hpp
+2 −9 include/session/config/base.h
+7 −5 include/session/config/contacts.h
+21 −15 include/session/config/convo_info_volatile.h
+1 −1 include/session/config/groups/info.h
+13 −9 include/session/config/groups/keys.h
+5 −4 include/session/config/groups/keys.hpp
+7 −5 include/session/config/groups/members.h
+5 −5 include/session/config/user_groups.h
+1 −5 include/session/config/user_profile.h
+61 −0 include/session/curve25519.h
+35 −0 include/session/curve25519.hpp
+100 −0 include/session/ed25519.h
+55 −0 include/session/ed25519.hpp
+6 −0 include/session/export.h
+36 −0 include/session/hash.h
+23 −0 include/session/hash.hpp
+176 −0 include/session/onionreq/builder.h
+82 −0 include/session/onionreq/builder.hpp
+9 −25 include/session/onionreq/hop_encryption.hpp
+2 −2 include/session/onionreq/parser.hpp
+61 −0 include/session/onionreq/response_parser.h
+31 −0 include/session/onionreq/response_parser.hpp
+24 −0 include/session/random.h
+18 −0 include/session/random.hpp
+219 −0 include/session/session_encrypt.h
+137 −5 include/session/session_encrypt.hpp
+10 −0 include/session/util.hpp
+9 −5 include/session/xed25519.h
+2 −32 proto/CMakeLists.txt
+7 −1 src/CMakeLists.txt
+381 −26 src/blinding.cpp
+13 −1 src/config/base.cpp
+3 −1 src/config/contacts.cpp
+2 −2 src/config/groups/info.cpp
+6 −6 src/config/groups/keys.cpp
+3 −0 src/config/user_profile.cpp
+87 −0 src/curve25519.cpp
+148 −0 src/ed25519.cpp
+58 −0 src/hash.cpp
+275 −0 src/onionreq/builder.cpp
+24 −25 src/onionreq/hop_encryption.cpp
+3 −2 src/onionreq/parser.cpp
+113 −0 src/onionreq/response_parser.cpp
+29 −0 src/random.cpp
+588 −15 src/session_encrypt.cpp
+11 −10 src/xed25519.cpp
+12 −3 tests/CMakeLists.txt
+150 −0 tests/test_blinding.cpp
+51 −0 tests/test_curve25519.cpp
+88 −0 tests/test_ed25519.cpp
+17 −10 tests/test_group_keys.cpp
+50 −0 tests/test_hash.cpp
+3 −3 tests/test_onionreq.cpp
+16 −0 tests/test_random.cpp
+308 −1 tests/test_session_encrypt.cpp
+6 −12 tests/test_xed25519.cpp

0 comments on commit 8b230bd

Please sign in to comment.