|
You are here |
fernandocorreia.dev | ||
| | | | |
blog.gistre.epita.fr
|
|
| | | | | This article explores the world of random number generation in embedded systems, covering both pseudo-random number generators (PRNGs) and hardware-based random number generators (HRNGs). It explains their principles, provides examples of code, discusses their advantages and limitations, and highlights their applications in embedded systems. | |
| | | | |
www.pcg-random.org
|
|
| | | | | Using the Minimal C Implementation | |
| | | | |
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. | |
| | | | |
fsharpforfunandprofit.com
|
|
| | | Breaking multi-parameter functions into smaller one-parameter functions | ||