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

Cryptographic chat support #303

Open
wants to merge 44 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
c4bb15e
Initial
guac42 Mar 11, 2023
0611240
Working chat verification
guac42 Mar 15, 2023
bba93bf
Complete working example
guac42 Mar 23, 2023
73cde63
Merge branch 'main' into crypto-chat
guac42 Mar 23, 2023
3b4f3a0
Fix merge conflicts
guac42 Mar 24, 2023
f5b59db
Formatting
guac42 Mar 24, 2023
a3eb7f7
Move public key to assets
guac42 Mar 25, 2023
051a18a
Create secure_chat plugin
guac42 Mar 30, 2023
e9c4a04
Merge branch 'main' into crypto-chat
guac42 Apr 6, 2023
649842b
Fix merge conflicts
guac42 Apr 7, 2023
6b81ba3
Formatting
guac42 Apr 7, 2023
e3152f5
Merge branch 'main' into pr/303
guac42 Apr 9, 2023
08699f5
Fix merge conflicts
guac42 Apr 9, 2023
a3ee16c
Merge remote-tracking branch 'upstream/main' into crypto-chat
guac42 Apr 10, 2023
6fe20f9
Fix merge conflicts
guac42 Apr 10, 2023
bc0fd64
Fix conflict in chat example
guac42 Apr 10, 2023
82ade5f
Cleanup
guac42 Apr 11, 2023
15f7d06
More cleanup
guac42 Apr 11, 2023
a6d6889
Fixed bug
guac42 May 2, 2023
089b141
Merge remote-tracking branch 'upstream/main' into crypto-chat
guac42 May 2, 2023
dfc5278
Fix merge conflicts
guac42 May 3, 2023
3c943ba
Correct severity of debug output
guac42 May 3, 2023
39cf110
Merge remote-tracking branch 'upstream/main' into crypto-chat
guac42 May 3, 2023
7e46176
Minor changes
guac42 May 4, 2023
59391ef
Transfer
guac42 Sep 25, 2023
33b5bdc
Merge remote-tracking branch 'upstream/main' into crypto-chat
guac42 Sep 25, 2023
87ec95b
Remove old files
guac42 Sep 25, 2023
36df78a
Major refactoring
guac42 Sep 29, 2023
919d06d
Merge branch 'crypto-chat' of https://github.com/guac42/valence into …
guac42 Sep 29, 2023
803e594
Run fmt
guac42 Sep 29, 2023
126dedf
Cleanup checks
guac42 Oct 1, 2023
7beed3a
More cleanup
guac42 Oct 1, 2023
bbdfa6f
Add commands to message chain
guac42 Oct 3, 2023
832d654
Fix typo
guac42 Oct 3, 2023
2504e28
Merge branch 'valence-rs:main' into crypto-chat
guac42 Oct 5, 2023
42f594a
Merge branch 'main' into crypto-chat
guac42 Oct 23, 2023
db540c7
Update depgraph.svg
guac42 Oct 23, 2023
38fa403
Fix depgraph.svg
guac42 Oct 23, 2023
fd68c07
Merge branch 'main' into crypto-chat
guac42 Nov 15, 2023
f0145f0
Update depgraph.svg
guac42 Nov 15, 2023
d42af9f
Fix parse error checking
guac42 Nov 16, 2023
6d6d7b1
Merge branch 'main' into crypto-chat
guac42 Nov 17, 2023
83da57c
Update command.rs
guac42 Nov 20, 2023
7ac1f2b
Add message parser
guac42 Nov 20, 2023
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
4 changes: 2 additions & 2 deletions crates/valence/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ rsa-der = "0.3.0"
rustc-hash = "1.1.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
sha1 = "0.10.5"
sha2 = "0.10.6"
sha1 = { version = "0.10.5", features = ["oid"] }
sha2 = { version = "0.10.6", features = ["oid"] }
dyc3 marked this conversation as resolved.
Show resolved Hide resolved
thiserror = "1.0.35"
tokio = { version = "1.25.0", features = ["full"] }
tracing = "0.1.37"
Expand Down
Loading