A repository of opam repositories, for use by oi
1opam-version: "2.0"
2synopsis: "Linear Feedback Shift Registers for OCaml"
3description:
4 "Configurable LFSRs (Fibonacci form) with up to 62-bit state. Includes presets for CCSDS OID frame randomization (32-cell, polynomial x^32 + x^22 + x^2 + x + 1, per CCSDS 132.0-B-3 Annex D). Used for TRANSEC traffic flow confidentiality in satellite links."
5maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>"
6authors: "Thomas Gazagnaire <thomas@gazagnaire.org>"
7license: "MIT"
8tags: ["org:blacksun" "codec.binary"]
9homepage: "https://tangled.org/gazagnaire.org/ocaml-lfsr"
10bug-reports: "https://tangled.org/gazagnaire.org/ocaml-lfsr/issues"
11depends: [
12 "dune" {>= "3.21"}
13 "ocaml" {>= "4.14"}
14 "alcotest" {with-test}
15 "mdx" {with-test}
16 "fmt"
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-lfsr"
34url {
35 src:
36 "git+https://tangled.org/gazagnaire.org/ocaml-lfsr#bb5c76503a72f56756f6543cdc0238d63e6a65ec"
37}
38x-d10-archive:
39 "5b4d15a14437c6bce64f99583ed4177e1e8e85cb9c1768a16edb0b7de081650c"
40x-maintenance-intent: ["(latest)"]
41x-oi-source-url: "git+https://tangled.org/gazagnaire.org/ocaml-lfsr#main"
42x-quality-build: "2026-04-15"
43x-quality-test: "2026-04-15"