CSRF protection using HMAC-signed state tokens (RFC 5869, RFC 2104)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefix all blacksun packages with nox-

Renames 35 packages to make blacksun forks distinguishable from their
opam-repository upstreams. Module names (Git.x, Tls.x, ...) stay bare;
opam package names and dune (public_name) findlib references move to
nox-X. After this commit, zero local package names overlap with
opam-repository.

Renamed:
- nox-git, nox-irmin
- nox-crypto, nox-crypto-pk, nox-crypto-rng, nox-crypto-ec
- nox-tls, nox-tls-eio, nox-tar, nox-tar-eio, nox-tty, nox-tty-eio
- nox-arp, nox-ca-certs, nox-cbor, nox-cookie, nox-crc, nox-csv
- nox-gpt, nox-hkdf, nox-http, nox-jwt, nox-kdf, nox-loc
- nox-memtrace, nox-pds, nox-sexp, nox-slack, nox-toml
- nox-websocket, nox-x509, nox-xdge, nox-yaml

Also drops orphan tar-mirage and tar-unix opam templates that had no
matching package stanza.

+7 -7
+2 -2
csrf.opam
··· 12 12 depends: [ 13 13 "ocaml" {>= "4.08"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 - "kdf" {>= "0.1"} 15 + "nox-kdf" {>= "0.1"} 16 16 "digestif" {>= "1.2"} 17 17 "eqaf" {>= "0.9"} 18 18 "alcotest" {with-test} 19 19 "alcobar" {with-test} 20 - "crypto-rng" {with-test & >= "0.11.0"} 20 + "nox-crypto-rng" {with-test & >= "0.11.0"} 21 21 "mdx" {with-test} 22 22 "odoc" {with-doc} 23 23 ]
+2 -2
dune-project
··· 17 17 (depends 18 18 (ocaml (>= 4.08)) 19 19 (dune (>= 3.0)) 20 - (kdf (>= 0.1)) 20 + (nox-kdf (>= 0.1)) 21 21 (digestif (>= 1.2)) 22 22 (eqaf (>= 0.9)) 23 23 (alcotest :with-test) 24 24 (alcobar :with-test) 25 - (crypto-rng (and :with-test (>= 0.11.0))) 25 + (nox-crypto-rng (and :with-test (>= 0.11.0))) 26 26 (mdx :with-test) 27 27 (odoc :with-doc)))
+1 -1
fuzz/dune
··· 2 2 3 3 (executable 4 4 (name fuzz) 5 - (libraries csrf alcobar crypto-rng.unix)) 5 + (libraries csrf alcobar nox-crypto-rng.unix)) 6 6 7 7 (rule 8 8 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name csrf) 3 3 (public_name csrf) 4 - (libraries kdf.hkdf digestif eqaf)) 4 + (libraries nox-kdf.hkdf digestif eqaf))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries csrf kdf.hkdf alcotest crypto-rng.unix)) 3 + (libraries csrf nox-kdf.hkdf alcotest nox-crypto-rng.unix))