SPAKE2/SPAKE2+ password-authenticated key exchange for OCaml
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.

+9 -9
+3 -3
dune-project
··· 26 26 (zarith (>= 1.12)) 27 27 (digestif (>= 1.2.0)) 28 28 (fmt (>= 0.9.0)) 29 - (kdf (>= 0.1)) 29 + (nox-kdf (>= 0.1)) 30 30 (pbkdf2 (>= 0.1)) 31 - (crypto-rng (>= 1.0.0)) 32 - (crypto-ec (>= 1.0.0)) 31 + (nox-crypto-rng (>= 1.0.0)) 32 + (nox-crypto-ec (>= 1.0.0)) 33 33 (logs (>= 0.7.0)) 34 34 (alcotest :with-test) 35 35 (mdx :with-test)
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries fmt spake2 alcobar crypto-rng.unix)) 3 + (libraries fmt spake2 alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name spake2) 3 3 (public_name spake2) 4 - (libraries zarith digestif fmt kdf.hkdf pbkdf2 crypto-rng crypto-ec logs)) 4 + (libraries zarith digestif fmt nox-kdf.hkdf pbkdf2 nox-crypto-rng nox-crypto-ec logs))
+3 -3
spake2.opam
··· 19 19 "zarith" {>= "1.12"} 20 20 "digestif" {>= "1.2.0"} 21 21 "fmt" {>= "0.9.0"} 22 - "kdf" {>= "0.1"} 22 + "nox-kdf" {>= "0.1"} 23 23 "pbkdf2" {>= "0.1"} 24 - "crypto-rng" {>= "1.0.0"} 25 - "crypto-ec" {>= "1.0.0"} 24 + "nox-crypto-rng" {>= "1.0.0"} 25 + "nox-crypto-ec" {>= "1.0.0"} 26 26 "logs" {>= "0.7.0"} 27 27 "alcotest" {with-test} 28 28 "mdx" {with-test}
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries spake2 kdf.hkdf pbkdf2 alcotest crypto-rng.unix ohex)) 3 + (libraries spake2 nox-kdf.hkdf pbkdf2 alcotest nox-crypto-rng.unix ohex))