We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a06c6e5 commit 4ef4d55Copy full SHA for 4ef4d55
mullvad-update/meta/src/platform.rs
@@ -230,9 +230,8 @@ impl Platform {
230
println!("Verifying signature of {}...", signed_path.display());
231
let bytes = fs::read(signed_path).await.context("Failed to read file")?;
232
233
- // TODO: Actual key
234
- let public_key =
235
- key::VerifyingKey::from_hex(include_str!("../../test-pubkey")).expect("Invalid pubkey");
+ let public_key = key::VerifyingKey::from_hex(include_str!("../../stagemole-pubkey"))
+ .expect("Invalid pubkey");
236
237
format::SignedResponse::deserialize_and_verify(
238
&vec1![public_key],
0 commit comments