HMAC-based Extract-and-Expand Key Derivation Function (RFC 5869)
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/cryptography/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries hkdf csvt alcotest) 3 + (libraries hkdf csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/cryptography/test.ml
··· 43 43 } 44 44 45 45 let vector_codec = 46 - Csvt.( 46 + Csv.( 47 47 Row.( 48 48 obj (fun name hash salt_hex ikm_hex info_hex len prk_hex okm_hex -> 49 49 { name; hash; salt_hex; ikm_hex; info_hex; len; prk_hex; okm_hex }) ··· 58 58 |> finish)) 59 59 60 60 let load_vectors () = 61 - match Csvt.decode_file vector_codec (trace "vectors.csv") with 61 + match Csv.decode_file vector_codec (trace "vectors.csv") with 62 62 | Ok rows -> rows 63 63 | Error e -> Alcotest.failf "CSV decode: %s" e 64 64