/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.johndcook.com
| | imapenguin.com
2.7 parsecs away

Travel
| | 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.
| | fernandocorreia.dev
2.4 parsecs away

Travel
| | This is part 23 of my journey learning Golang. Random number generators For some kinds of programs, like simulations, games, or test code, it is useful to be ...
| | paragonie.com
3.2 parsecs away

Travel
| | This blog post will maintain the industry best practices for securely generating random data in Ruby, Node.js, Java, etc.
| | neilmadden.blog
24.2 parsecs away

Travel
| Wikipedia's definition of a digital signature is: A digital signature is a mathematical scheme for verifying the authenticity of digital messages or documents. A valid digital signature on a message gives a recipient confidence that the message came from a sender known to the recipient. -Wikipedia They also have a handy diagram of the process...