Explore >> Select a destination


You are here

paragonie.com
| | soatok.blog
7.7 parsecs away

Travel
| | Just to assuage any panic, let me state this up front. If you're reading this blog post wondering if your Lobste.rs account is at risk, good news: I didn't publish it until after the vulnerability was mitigated, so you're safe. You don't need to change your passwords or anything. This write-up is purely for education...
| | educatedguesswork.org
11.3 parsecs away

Travel
| |
| | www.sjoerdlangkemper.nl
12.3 parsecs away

Travel
| | To securely store passwords they should be hashed with a slow hashing function, such as PBKDF2. PBKDF2 is slow because it calls a fast hash function many times. This blog post explores some properties that the iterations must have to be secure.
| | kndrck.co
95.8 parsecs away

Travel
| Motivation RSA (Rivest-Shamir-Adleman) is one of the first public-key cryptosystems and is widely used for secure data transmission. In such a cryptosystem, the encryption key is public and is different from the decryption key which is kept secret. If I wanted to comprehend zero knowledge proofs, then understanding the grand-daddy of public-key cryptosystems is a must. Background Maths Exponential Rules 1 $$ \begin{align} \label{eq:exponent_rule} g^{a-b} &= \dfrac{g^a}{g^b} \newline g^{a+b} &= g^a g^b \n...