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

bump user agent version #75

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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 auxin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ auxin_protos = { path = "../auxin_protos" }

#Signal protocol & zero knowledge proof stuff.
libsignal-protocol = { git = "https://github.com/signalapp/libsignal-client", tag = "v0.14.0"}
zkgroup = { git = "https://github.com/signalapp/zkgroup", tag = "v0.9.0" }
zkgroup = { git = "https://github.com/signalapp/libsignal-client" }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this find zkgroup in that repo?


hkdf = "0.11"
sha2 = "0.9.8"
Expand Down
4 changes: 2 additions & 2 deletions auxin/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ pub mod api_paths {
}

//For "User-Agent" http header
pub const USER_AGENT: &str = "Signal-Android/5.22.3";
pub const USER_AGENT: &str = "Signal-Android/5.52.1";
//For "X-Signal-Agent" http header
pub const X_SIGNAL_AGENT: &str = "Signal-Android/5.22.3";
pub const X_SIGNAL_AGENT: &str = "Signal-Android/5.52.1";

pub type Body = Vec<u8>;
pub type Request = http::request::Request<Body>;
Expand Down