this post was submitted on 08 Apr 2024
75 points (98.7% liked)

No Stupid Questions

34449 readers
1091 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS
 

I've been trying to get my head around this and I've watched a few videos but they don't seem to specifically answer my question.

According to what I've found online, messages encrypted with a public key can only be decrypted with a private key. But in practice, how is that possible?

Surely a public key contains a set of instructions, and anyone could just run those instructions in reverse to decrypt a message? If everything you need to encrypt a message is stored within a public key, then how is it a one-way process?

It's likely that I'm misunderstanding a core element of this!

you are viewing a single comment's thread
view the rest of the comments
[–] Successful_Try543@feddit.de 21 points 3 months ago* (last edited 3 months ago) (8 children)

AfaIk, yes, in principle one could construct the private key from the public key. However, given the current computational power, it would in practice take forever and a day, if the encryption algorithm is sufficiently strong, see e.g. the Wikipedia article on RSA

[–] OmegaMouse@pawb.social 3 points 3 months ago (7 children)

But say (simplying greatly) the public key tells my computer to multiply my text by a prime number

If the prime number is already known from the public key, then why is any computation required? To decrypt it can't I (or anyone else) just divide by the prime? Even with a significantly more complex calculation, can't you just work the steps back in reverse using the instructions from the public key?

[–] philoko@ani.social 25 points 3 months ago (1 children)

As an oversimplification, RSA works by taking two huge prime numbers (the private key) and multiplying them together (the public key). You could get the private key by factoring the public key but the best way to factor a prime number is to basically just try every combination with a few tricks sprinkled in until something works which could take millions of years with modern computers. You can hoard everyone’s public key until computers can crack it in a reasonable amount of time but everyone involved will be long gone by then.

The whole point of private and public keys is to have an operation that’s easy to do one way but would take so long to reverse that it’s virtually impossible. There’s nothing stopping you trying except the time and effort involved.

[–] OmegaMouse@pawb.social 6 points 3 months ago* (last edited 3 months ago) (3 children)

Ah I think of sort of get it!

The public key is used within a function by the person sending the message, and even someone that knew the function and the public key wouldn't be able to decrypt the message, because doing so would require knowledge of the original prime numbers which they couldn't work out unless a computer spend years factoring the public key.

My only other bit of confusion:

  • If someone used a public key to encrypt the message "Hello", maybe it would spit out something like Gh5bsKjbi4
  • If someone else sent the exact same message I assume the outcome would also be identical, and therefore it would be possible by using common phrases to work out what was sent? I could type messages like Hi, Goodbye, Hola until I got to 'Hello' and realised it was the same output.
  • However I assume that a message like 'Hello, how are you?' would result in a completely different output (despite Hello appearing in both) and thus trying to work out any messages in a brute force way like this would be pointless.
[–] hikaru755@feddit.de 6 points 3 months ago

Yup, you got it. Even the solution to your confusion. Good encryption algorithms are set up so that even the smallest possible change in the input (a single flipped bit) will produce a completely different result. So yeah, if you have just a small set of exact possible messages that could be sent, you can find out which one it was by encrypting it yourself and comparing your result to what was sent. But there is a super easy protection against this - just add some random data to the end of the message before encrypting it. The more, the harder it will be to crack.

[–] mumblerfish@lemmy.world 5 points 3 months ago

Well, you use "padding" to solve those things. Like if you type "hello", your implementation of the whole algorithm should do something like: take the string, add some random string that is tagged in some way, and then encrypt. At decryption, you get a string with some random stuff in it, but you filter the tag and return only the message. Like "hello" -> "[trash]kfkidkeb[/trash] hello", add and remove the "[trash]" block, before encryption and after decryption, respectively

[–] howrar@lemmy.ca 3 points 3 months ago

The same word will be encrypted the same way each time, and that's actually the basis of one of the known attacks on LLMs like ChatGPT. They send responses back one "word" at a time, so someone who's snooping can easily figure out what it's saying from the encrypted messages. The exploit doesn't affect Bard because it sends larger chunks of text at a time.

load more comments (5 replies)
load more comments (5 replies)