rollin@piefed.socialtoTechnology@lemmy.world•New Jersey bans grocery stores from using shoppers' personal data to set pricesEnglish
1·
18 days agoah got you, thanks for the explanation
ah got you, thanks for the explanation
er what? Are you saying people in US have to enter their phone number every time they buy stuff??
at least we can be pretty sure the text isn’t LLM generated - it’s so clunky and hard to read 😬
I presume the idea is that by separating the encryption step from the messaging app, people can be more confident that government agencies are unable to monitor their conversations. You know, by taking secret screenshots of the device or whatever.
But it seems to me that you could easily do this yourself using the
gpgcommand line tool like so:gpg --encrypt --armor --recipient <PUBLIC KEY ID>This uses the stored public key identified by
--recipientto encrypt whatever you type and produce the result in ASCII text form, which can then be sent over whatever messenger you wish.I’d prefer to do it this way than trust some unknown 3rd party app.
You could even pipe the output into a tool such as
qrencodeto send your encrypted message as a QR code, depending on message length. This would allow you to keep the machine doing the encryption fully offline.