upstream: github.com/robur-coop/kdf
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.

+13 -13
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries kdf.hkdf kdf.pbkdf kdf.scrypt digestif)) 7 + (libraries nox-kdf.hkdf nox-kdf.pbkdf nox-kdf.scrypt digestif))
+3 -3
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name kdf) 3 + (name nox-kdf) 4 4 (source (tangled gazagnaire.org/kdf)) 5 5 (license BSD-2-Clause) 6 6 (authors ··· 17 17 (generate_opam_files true) 18 18 19 19 (package 20 - (name kdf) 20 + (name nox-kdf) 21 21 (synopsis "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914") 22 22 (description "A pure OCaml implementation of scrypt (RFC 7914), PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898), and HKDF (RFC 5869).") 23 23 (tags (org:blacksun crypto)) ··· 25 25 (ocaml (>= 4.13.0)) 26 26 (dune (>= 1.8.0)) 27 27 (digestif (>= 1.2.0)) 28 - (crypto (>= 1.0.0)) 28 + (nox-crypto (>= 1.0.0)) 29 29 (alcotest (and :with-test (>= 0.8.1))) 30 30 (mdx :with-test) 31 31 (ohex (and :with-test (>= 0.2.0)))
+1 -1
hkdf/dune
··· 1 1 (library 2 2 (name hkdf) 3 - (public_name kdf.hkdf) 3 + (public_name nox-kdf.hkdf) 4 4 (libraries digestif))
+1 -1
hkdf/tests/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries alcotest kdf.hkdf ohex)) 3 + (libraries alcotest nox-kdf.hkdf ohex))
+1 -1
kdf.opam nox-kdf.opam
··· 22 22 "ocaml" {>= "4.13.0"} 23 23 "dune" {>= "3.21" & >= "1.8.0"} 24 24 "digestif" {>= "1.2.0"} 25 - "crypto" {>= "1.0.0"} 25 + "nox-crypto" {>= "1.0.0"} 26 26 "alcotest" {with-test & >= "0.8.1"} 27 27 "mdx" {with-test} 28 28 "ohex" {with-test & >= "0.2.0"}
+2 -2
pbkdf/dune
··· 1 1 (library 2 2 (name pbkdf) 3 - (public_name kdf.pbkdf) 4 - (libraries digestif crypto)) 3 + (public_name nox-kdf.pbkdf) 4 + (libraries digestif nox-crypto))
+1 -1
pbkdf/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ohex kdf.pbkdf alcotest)) 3 + (libraries ohex nox-kdf.pbkdf alcotest))
+2 -2
scrypt/dune
··· 1 1 (library 2 2 (name scrypt) 3 - (public_name kdf.scrypt) 4 - (libraries crypto kdf.pbkdf) 3 + (public_name nox-kdf.scrypt) 4 + (libraries nox-crypto nox-kdf.pbkdf) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names salsa-core)
+1 -1
scrypt/tests/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries kdf.scrypt ohex alcotest)) 3 + (libraries nox-kdf.scrypt ohex alcotest))