this post was submitted on 11 Oct 2023
146 points (94.0% liked)

Privacy

31385 readers
62 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
 

Why are reproducible builds only on one platform (Android)? Desktop version could have a built-in backdoor and data would be transferred not from the phone, but from the PC)

you are viewing a single comment's thread
view the rest of the comments
[–] brianorca 4 points 11 months ago* (last edited 11 months ago) (2 children)

Meaning you can take the public source code and build (compile using your own tools) the whole package to run locally. From context, I'm assuming the public source is missing something to help you build it properly. (Maybe a dependency or a make file.)

[–] [email protected] 15 points 11 months ago

In this context it actually means that you can take the source code, and get the exact same binary artifact as another build. It means that you can verify (or have someone else verify) that the released binary is actually built from the source code it says it is, by comparing their hashes. You can "reproduce" a bit for bit copy of the released binaries.

[–] skoberlink 1 points 11 months ago

Ah gotcha, thanks!