Bundle Protocol Security (RFC 9172) - authentication and encryption for DTN
0
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.

+11 -11
+4 -4
bpsec.opam
··· 15 15 "dune" {>= "3.21"} 16 16 "ocaml" {>= "4.14"} 17 17 "bundle" {>= "0.1"} 18 - "cbor" {>= "0.1"} 19 - "crypto" 20 - "crypto-rng" 18 + "nox-cbor" {>= "0.1"} 19 + "nox-crypto" 20 + "nox-crypto-rng" 21 21 "digestif" 22 22 "fmt" 23 23 "alcotest" {with-test} 24 24 "alcobar" {with-test} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 "odoc" {with-doc} 28 28 ] 29 29 build: [
+4 -4
dune-project
··· 25 25 (depends 26 26 (ocaml (>= 4.14)) 27 27 (bundle (>= 0.1)) 28 - (cbor (>= 0.1)) 29 - crypto 30 - crypto-rng 28 + (nox-cbor (>= 0.1)) 29 + nox-crypto 30 + nox-crypto-rng 31 31 digestif 32 32 fmt 33 33 (alcotest :with-test) 34 34 (alcobar :with-test) 35 35 (mdx :with-test) 36 - loc)) 36 + nox-loc))
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries bpsec alcobar crypto-rng.unix)) 3 + (libraries bpsec alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name bpsec) 3 3 (public_name bpsec) 4 - (libraries bundle cbor digestif crypto crypto-rng fmt)) 4 + (libraries bundle nox-cbor digestif nox-crypto nox-crypto-rng fmt))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries bpsec alcotest crypto-rng.unix)) 3 + (libraries bpsec alcotest nox-crypto-rng.unix))