Lol. Minerals?
Lol. Minerals?
Fascinating that this works / doesn’t work just as on reddit ¯\_(ツ)_/¯
Hello there, For a prequelmemes replacement, checkout:
Over 500 Upvotes in 3h. This is highly viral for lemmy right?
That game was so good. It’s a bit sad that they never released a sequel. Otherwise, it probably would have been underwhelming.
Unfortunately, you can only downgrade Jerboa to the former version or wait for feddit.de to be updated to Lemmy 0.18. The latest Jerboa version is currently not compatible with feddit.de which is running Lemmy 0.17.4.
You can also browse the mobile web version of feddit.de while waiting. That’s what I am doing atm.
Also writing my first comment here, whats up lemmy, test test 1234 bold italics
Qoute me
Also no expert about the math behind it but this is how I learned asymmetric encryption with public and private key on a very high level of abstraction:
To encrypt a message you basically take the unencrypted message to the power of the private key (lets call that d) and divide it by the result of a multiplication of two large prime numbers (lets call that N). Now you take the rest of that division, so basically modulo if you are familiar with that.
To decrypt, you take the encrypted message to the power of the public key (e) and divide it by N. The rest of that operation is again the unencrypted message.
So the private and public key are the pairs (d, N) and (e, N) respectively. The great thing about this is that you can post the public key publicly without care and only you, in possession of the private key, can decrypt messages encrypted with your public key. So its easy to verify if you got the key but hard to brute force due to modulo being a one way function. However, this basic RSA approach as described here is not used on its own anymore but rather in combination with other techniques to prevent guessing on very short messages or keys.