|
You are here |
fernandocorreia.dev | ||
| | | | |
imapenguin.com
|
|
| | | | | What is an LFSR? An LFSR is a Linear Feedback Shift Register. It's a simple way of generating a sequence of numbers that look random. Used in cryptography and in generating pseudo-random numbers, they are interesting because they are so simple. Shift bits and feed a few of them back into the sequence. That's it. Important note: LFSRs are not cryptographically secure on their own. ESPECIALLY 8-bit LFSRs. More on that in the next post on this topic. | |
| | | | |
paragonie.com
|
|
| | | | | A lesson on cryptographically secure pseudorandom number generators in PHP, and how to generate random integers and strings from a high quality entropy source like /dev/urandom to generate secure random passwords in PHP. | |
| | | | |
www.pcg-random.org
|
|
| | | | | Using the Minimal C Implementation | |
| | | | |
karla.io
|
|
| | | [AI summary] The author details their journey of building a custom SSH client, exploring the protocol's layers, algorithm negotiation, key exchange, and authentication processes. | ||