SRP-6a Secure Remote Password protocol 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.

+5 -5
+1 -1
dune-project
··· 22 22 (ocaml (>= 4.08)) 23 23 (zarith (>= 1.12)) 24 24 (digestif (>= 1.2.0)) 25 - (crypto-rng (>= 1.0.0)) 25 + (nox-crypto-rng (>= 1.0.0)) 26 26 (alcotest :with-test) 27 27 (mdx :with-test) 28 28 (alcobar :with-test)))
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries srp alcobar crypto-rng.unix)) 3 + (libraries srp alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name srp) 3 3 (public_name srp) 4 - (libraries zarith digestif crypto-rng)) 4 + (libraries zarith digestif nox-crypto-rng))
+1 -1
srp.opam
··· 15 15 "ocaml" {>= "4.08"} 16 16 "zarith" {>= "1.12"} 17 17 "digestif" {>= "1.2.0"} 18 - "crypto-rng" {>= "1.0.0"} 18 + "nox-crypto-rng" {>= "1.0.0"} 19 19 "alcotest" {with-test} 20 20 "mdx" {with-test} 21 21 "alcobar" {with-test}
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries srp alcotest crypto-rng.unix ohex)) 3 + (libraries srp alcotest nox-crypto-rng.unix ohex))