Skip to content

Instantly share code, notes, and snippets.

@Cleroth
Cleroth / lfsr.c
Created February 23, 2023 10:57 — forked from BobBurns/lfsr.c
Linear feed shift register in C with 8 bits
#include <stdio.h>
#include <stdlib.h>
#define STREAM (256 * 8)
/* short program to understand linear feed shift register
* and its use in stream ciphers.
*/
int