Build:
- 0
2026-02-27 04:04.06: New job: test digestif.0.9.0 with ocamlbuild.0.14.3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3
RUN opam reinstall ocamlbuild.0.14.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlbuild.0.14.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall digestif.0.9.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'digestif.0.9.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test digestif.0.9.0) || true
RUN opam reinstall --with-test --verbose digestif.0.9.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'digestif.0.9.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-27 04:04.06: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocamlbuild.0.14.3-digestif.0.9.0-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.06: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlbuild.0.14.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall digestif.0.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test digestif.0.9.0) || true"))
(run (shell "opam reinstall --with-test --verbose digestif.0.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:04.06: Waiting for resource in pool OCluster
2026-03-02 03:33.00: Waiting for worker…
2026-03-02 03:37.31: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 03:38.15 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 03:38.15 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 03:38.15 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 03:38.15 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 03:38.15 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 03:38.16 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 03:38.16 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1701 kB/s)
- Reading package lists...
2026-03-02 03:38.16 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3"))
ocamlbuild is now pinned to version 0.14.3
2026-03-02 03:38.16 ---> using "963b801ba969ccb345fb2b0091d5b3fbc23c4ef4d4607da09cd43d88d10ecff1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlbuild.0.14.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlbuild.0.14.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocamlbuild 0.14.3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.14.3 (cached)
-> installed ocamlbuild.0.14.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 03:38.16 ---> using "4a148b5f24637bcde3a11bf41664920358bff04e05d35133cadbaf90cc750096" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall digestif.0.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
digestif.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install base-bytes base [required by digestif]
- install bigarray-compat 1.1.0 [required by digestif]
- install digestif 0.9.0
- install dune 3.21.1 [required by digestif]
- install eqaf 0.10 [required by digestif]
- install ocamlfind 1.9.8 [required by base-bytes]
- install stdlib-shims 0.3.0 [required by digestif]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved digestif.0.9.0 (cached)
-> retrieved dune.3.21.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.1
-> installed bigarray-compat.1.1.0
-> installed stdlib-shims.0.3.0
-> installed eqaf.0.10
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 03:38.46 ---> saved as "3d008644608bc6cf6727d4ef612b507fd654cc0ad6bb0f5f252b4f7493252bac"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test digestif.0.9.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile digestif 0.9.0
=== install 12 packages
- install alcotest 1.9.1 [required by digestif]
- install astring 0.8.5 [required by digestif]
- install bos 0.2.1 [required by digestif]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by digestif]
- install fpath 0.7.3 [required by digestif]
- install logs 0.10.0 [required by bos]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install rresult 0.7.0 [required by digestif]
- install topkg 1.1.1 [required by bos]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved digestif.0.9.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed digestif.0.9.0
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed bos.0.2.1
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 03:39.05 ---> saved as "921039caf036994bfb328c5212523ef4f41435682133d641eb66f3775d381cd9"
/home/opam: (run (shell "opam reinstall --with-test --verbose digestif.0.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile digestif 0.9.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [digestif.0.9.0: extract]
-> retrieved digestif.0.9.0 (cached)
Processing 2/4: [digestif: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "digestif" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/digestif.0.9.0)
Processing 2/4: [digestif: ./install/install.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./install/install.ml" (CWD=/home/opam/.opam/5.4/.opam-switch/build/digestif.0.9.0)
Processing 2/4: [digestif: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "digestif" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/digestif.0.9.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/conv/.test_conv.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-c/.digestif_c.objs/byte -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -no-alias-deps -o test/conv/.test_conv.eobjs/byte/dune__exe__Test_conv.cmo -c -impl test/conv/test_conv.ml)
- File "test/conv/test_conv.ml", line 9, characters 11-19:
- 9 | let strf = Fmt.strf
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/c/.test.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-c/.digestif_c.objs/byte -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -no-alias-deps -o test/c/.test.eobjs/byte/dune__exe__Test.cmo -c -impl test/c/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ocaml/.test.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-ocaml/.digestif_ocaml.objs/byte -I src-ocaml/.digestif_ocaml.objs/public_cmi -no-alias-deps -o test/ocaml/.test.eobjs/byte/dune__exe__Test.cmo -c -impl test/ocaml/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/conv/.test_conv.eobjs/byte -I test/conv/.test_conv.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-c/.digestif_c.objs/byte -I src-c/.digestif_c.objs/native -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -I src-c/native/.rakia.objs/native -cmi-file test/conv/.test_conv.eobjs/byte/dune__exe__Test_conv.cmi -no-alias-deps -o test/conv/.test_conv.eobjs/native/dune__exe__Test_conv.cmx -c -impl test/conv/test_conv.ml)
- File "test/conv/test_conv.ml", line 9, characters 11-19:
- 9 | let strf = Fmt.strf
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/c/.test.eobjs/byte -I test/c/.test.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-c/.digestif_c.objs/byte -I src-c/.digestif_c.objs/native -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -I src-c/native/.rakia.objs/native -cmi-file test/c/.test.eobjs/byte/dune__exe__Test.cmi -no-alias-deps -o test/c/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/c/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ocaml/.test.eobjs/byte -I test/ocaml/.test.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -H src-ocaml/.digestif_ocaml.objs/byte -I src-ocaml/.digestif_ocaml.objs/native -I src-ocaml/.digestif_ocaml.objs/public_cmi -cmi-file test/ocaml/.test.eobjs/byte/dune__exe__Test.cmi -no-alias-deps -o test/ocaml/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/ocaml/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default/test/conv && ./test_conv.exe --color=always)
- Testing `digestif'.
- This run has ID `AH1E3ZDA'.
-
- [OK] of_hex 0 0 hex:0.
- [OK] of_hex 0 1 hex:1.
- [OK] of_hex 0 2 hex:2.
- [OK] of_hex 0 3 hex:3.
- [OK] of_hex 0 4 hex:4.
- [OK] of_hex 0 5 hex:5.
- [OK] of_hex 0 6 hex:6.
- [OK] of_hex 0 7 hex:7.
- [OK] of_hex 0 8 hex:8.
- [OK] of_hex 0 9 hex:9.
- [OK] of_hex 0 10 hex:10.
- [OK] of_hex 0 11 hex:11.
- [OK] of_hex 0 12 hex:12.
- [OK] of_hex 0 13 hex:13.
- [OK] of_hex 0 14 hex:14.
- [OK] of_hex 0 15 hex:15.
- [OK] of_hex 0 16 hex:16.
- [OK] of_hex 0 17 hex:17.
- [OK] of_hex 0 18 hex:18.
- [OK] of_hex 0 19 hex:19.
- [OK] of_hex 0 20 hex:20.
- [OK] of_hex 0 21 hex:21.
- [OK] of_hex 0 22 hex:22.
- [OK] of_hex 0 23 hex:23.
- [OK] of_hex 0 24 hex:24.
- [OK] of_hex 0 25 hex:25.
- [OK] of_hex 0 26 hex:26.
- [OK] of_hex 0 27 hex:27.
- [OK] of_hex 0 28 hex:28.
- [OK] of_hex 0 29 hex:29.
- [OK] of_hex 0 30 hex:30.
- [OK] of_hex 0 31 hex:31.
- [OK] consistent_of_hex 0 0 consistent hex:0.
- [OK] consistent_of_hex 0 1 consistent hex:1.
- [OK] consistent_of_hex 0 2 consistent hex:2.
- [OK] consistent_of_hex 0 3 consistent hex:3.
- [OK] consistent_of_hex 0 4 consistent hex:4.
- [OK] consistent_of_hex 0 5 consistent hex:5.
- [OK] consistent_of_hex 0 6 consistent hex:6.
- [OK] consistent_of_hex 0 7 consistent hex:7.
- [OK] consistent_of_hex 0 8 consistent hex:8.
- [OK] consistent_of_hex 0 9 consistent hex:9.
- [OK] consistent_of_hex 0 10 consistent hex:10.
- [OK] consistent_of_hex 0 11 consistent hex:11.
- [OK] consistent_of_hex 0 12 consistent hex:12.
- [OK] consistent_of_hex 0 13 consistent hex:13.
- [OK] consistent_of_hex 0 14 consistent hex:14.
- [OK] consistent_of_hex 0 15 consistent hex:15.
- [OK] consistent_of_hex 0 16 consistent hex:16.
- [OK] consistent_of_hex 0 17 consistent hex:17.
- [OK] consistent_of_hex 0 18 consistent hex:18.
- [OK] consistent_of_hex 0 19 consistent hex:19.
- [OK] consistent_of_hex 0 20 consistent hex:20.
- [OK] consistent_of_hex 0 21 consistent hex:21.
- [OK] consistent_of_hex 0 22 consistent hex:22.
- [OK] consistent_of_hex 0 23 consistent hex:23.
- [OK] consistent_of_hex 0 24 consistent hex:24.
- [OK] consistent_of_hex 0 25 consistent hex:25.
- [OK] consistent_of_hex 0 26 consistent hex:26.
- [OK] consistent_of_hex 0 27 consistent hex:27.
- [OK] consistent_of_hex 0 28 consistent hex:28.
- [OK] consistent_of_hex 0 29 consistent hex:29.
- [OK] consistent_of_hex 0 30 consistent hex:30.
- [OK] consistent_of_hex 0 31 consistent hex:31.
- [OK] of_hex 1 0 hex:0.
- [OK] of_hex 1 1 hex:1.
- [OK] of_hex 1 2 hex:2.
- [OK] of_hex 1 3 hex:3.
- [OK] of_hex 1 4 hex:4.
- [OK] of_hex 1 5 hex:5.
- [OK] of_hex 1 6 hex:6.
- [OK] of_hex 1 7 hex:7.
- [OK] of_hex 1 8 hex:8.
- [OK] of_hex 1 9 hex:9.
- [OK] of_hex 1 10 hex:10.
- [OK] of_hex 1 11 hex:11.
- [OK] of_hex 1 12 hex:12.
- [OK] of_hex 1 13 hex:13.
- [OK] of_hex 1 14 hex:14.
- [OK] of_hex 1 15 hex:15.
- [OK] of_hex 1 16 hex:16.
- [OK] of_hex 1 17 hex:17.
- [OK] of_hex 1 18 hex:18.
- [OK] of_hex 1 19 hex:19.
- [OK] of_hex 1 20 hex:20.
- [OK] of_hex 1 21 hex:21.
- [OK] of_hex 1 22 hex:22.
- [OK] of_hex 1 23 hex:23.
- [OK] of_hex 1 24 hex:24.
- [OK] of_hex 1 25 hex:25.
- [OK] of_hex 1 26 hex:26.
- [OK] of_hex 1 27 hex:27.
- [OK] of_hex 1 28 hex:28.
- [OK] of_hex 1 29 hex:29.
- [OK] of_hex 1 30 hex:30.
- [OK] of_hex 1 31 hex:31.
- [OK] consistent_of_hex 1 0 consistent hex:0.
- [OK] consistent_of_hex 1 1 consistent hex:1.
- [OK] consistent_of_hex 1 2 consistent hex:2.
- [OK] consistent_of_hex 1 3 consistent hex:3.
- [OK] consistent_of_hex 1 4 consistent hex:4.
- [OK] consistent_of_hex 1 5 consistent hex:5.
- [OK] consistent_of_hex 1 6 consistent hex:6.
- [OK] consistent_of_hex 1 7 consistent hex:7.
- [OK] consistent_of_hex 1 8 consistent hex:8.
- [OK] consistent_of_hex 1 9 consistent hex:9.
- [OK] consistent_of_hex 1 10 consistent hex:10.
- [OK] consistent_of_hex 1 11 consistent hex:11.
- [OK] consistent_of_hex 1 12 consistent hex:12.
- [OK] consistent_of_hex 1 13 consistent hex:13.
- [OK] consistent_of_hex 1 14 consistent hex:14.
- [OK] consistent_of_hex 1 15 consistent hex:15.
- [OK] consistent_of_hex 1 16 consistent hex:16.
- [OK] consistent_of_hex 1 17 consistent hex:17.
- [OK] consistent_of_hex 1 18 consistent hex:18.
- [OK] consistent_of_hex 1 19 consistent hex:19.
- [OK] consistent_of_hex 1 20 consistent hex:20.
- [OK] consistent_of_hex 1 21 consistent hex:21.
- [OK] consistent_of_hex 1 22 consistent hex:22.
- [OK] consistent_of_hex 1 23 consistent hex:23.
- [OK] consistent_of_hex 1 24 consistent hex:24.
- [OK] consistent_of_hex 1 25 consistent hex:25.
- [OK] consistent_of_hex 1 26 consistent hex:26.
- [OK] consistent_of_hex 1 27 consistent hex:27.
- [OK] consistent_of_hex 1 28 consistent hex:28.
- [OK] consistent_of_hex 1 29 consistent hex:29.
- [OK] consistent_of_hex 1 30 consistent hex:30.
- [OK] consistent_of_hex 1 31 consistent hex:31.
- [OK] of_hex 2 0 hex:0.
- [OK] of_hex 2 1 hex:1.
- [OK] of_hex 2 2 hex:2.
- [OK] of_hex 2 3 hex:3.
- [OK] of_hex 2 4 hex:4.
- [OK] of_hex 2 5 hex:5.
- [OK] of_hex 2 6 hex:6.
- [OK] of_hex 2 7 hex:7.
- [OK] of_hex 2 8 hex:8.
- [OK] of_hex 2 9 hex:9.
- [OK] of_hex 2 10 hex:10.
- [OK] of_hex 2 11 hex:11.
- [OK] of_hex 2 12 hex:12.
- [OK] of_hex 2 13 hex:13.
- [OK] of_hex 2 14 hex:14.
- [OK] of_hex 2 15 hex:15.
- [OK] of_hex 2 16 hex:16.
- [OK] of_hex 2 17 hex:17.
- [OK] of_hex 2 18 hex:18.
- [OK] of_hex 2 19 hex:19.
- [OK] of_hex 2 20 hex:20.
- [OK] of_hex 2 21 hex:21.
- [OK] of_hex 2 22 hex:22.
- [OK] of_hex 2 23 hex:23.
- [OK] of_hex 2 24 hex:24.
- [OK] of_hex 2 25 hex:25.
- [OK] of_hex 2 26 hex:26.
- [OK] of_hex 2 27 hex:27.
- [OK] of_hex 2 28 hex:28.
- [OK] of_hex 2 29 hex:29.
- [OK] of_hex 2 30 hex:30.
- [OK] of_hex 2 31 hex:31.
- [OK] consistent_of_hex 2 0 consistent hex fail:0.
- [OK] consistent_of_hex 2 1 consistent hex fail:1.
- [OK] consistent_of_hex 2 2 consistent hex fail:2.
- [OK] consistent_of_hex 2 3 consistent hex fail:3.
- [OK] consistent_of_hex 2 4 consistent hex fail:4.
- [OK] consistent_of_hex 2 5 consistent hex fail:5.
- [OK] consistent_of_hex 2 6 consistent hex fail:6.
- [OK] consistent_of_hex 2 7 consistent hex fail:7.
- [OK] consistent_of_hex 2 8 consistent hex fail:8.
- [OK] consistent_of_hex 2 9 consistent hex fail:9.
- [OK] consistent_of_hex 2 10 consistent hex fail:10.
- [OK] consistent_of_hex 2 11 consistent hex fail:11.
- [OK] consistent_of_hex 2 12 consistent hex fail:12.
- [OK] consistent_of_hex 2 13 consistent hex fail:13.
- [OK] consistent_of_hex 2 14 consistent hex fail:14.
- [OK] consistent_of_hex 2 15 consistent hex fail:15.
- [OK] consistent_of_hex 2 16 consistent hex fail:16.
- [OK] consistent_of_hex 2 17 consistent hex fail:17.
- [OK] consistent_of_hex 2 18 consistent hex fail:18.
- [OK] consistent_of_hex 2 19 consistent hex fail:19.
- [OK] consistent_of_hex 2 20 consistent hex fail:20.
- [OK] consistent_of_hex 2 21 consistent hex fail:21.
- [OK] consistent_of_hex 2 22 consistent hex fail:22.
- [OK] consistent_of_hex 2 23 consistent hex fail:23.
- [OK] consistent_of_hex 2 24 consistent hex fail:24.
- [OK] consistent_of_hex 2 25 consistent hex fail:25.
- [OK] consistent_of_hex 2 26 consistent hex fail:26.
- [OK] consistent_of_hex 2 27 consistent hex fail:27.
- [OK] consistent_of_hex 2 28 consistent hex fail:28.
- [OK] consistent_of_hex 2 29 consistent hex fail:29.
- [OK] consistent_of_hex 2 30 consistent hex fail:30.
- [OK] consistent_of_hex 2 31 consistent hex fail:31.
- [OK] iso of_hex 0 iso:0.
- [OK] iso of_hex 1 iso:1.
- [OK] iso of_hex 2 iso:2.
- [OK] iso of_hex 3 iso:3.
- [OK] iso of_hex 4 iso:4.
- [OK] iso of_hex 5 iso:5.
- [OK] iso of_hex 6 iso:6.
- [OK] iso of_hex 7 iso:7.
- [OK] iso of_hex 8 iso:8.
- [OK] iso of_hex 9 iso:9.
- [OK] iso of_hex 10 iso:10.
- [OK] iso of_hex 11 iso:11.
- [OK] iso of_hex 12 iso:12.
- [OK] iso of_hex 13 iso:13.
- [OK] iso of_hex 14 iso:14.
- [OK] iso of_hex 15 iso:15.
- [OK] iso of_hex 16 iso:16.
- [OK] iso of_hex 17 iso:17.
- [OK] iso of_hex 18 iso:18.
- [OK] iso of_hex 19 iso:19.
- [OK] iso of_hex 20 iso:20.
- [OK] iso of_hex 21 iso:21.
- [OK] iso of_hex 22 iso:22.
- [OK] iso of_hex 23 iso:23.
- [OK] iso of_hex 24 iso:24.
- [OK] iso of_hex 25 iso:25.
- [OK] iso of_hex 26 iso:26.
- [OK] iso of_hex 27 iso:27.
- [OK] iso of_hex 28 iso:28.
- [OK] iso of_hex 29 iso:29.
- [OK] iso of_hex 30 iso:30.
- [OK] iso of_hex 31 iso:31.
- [OK] iso of_hex 32 iso:32.
- [OK] iso of_hex 33 iso:33.
- [OK] iso of_hex 34 iso:34.
- [OK] iso of_hex 35 iso:35.
- [OK] iso of_hex 36 iso:36.
- [OK] iso of_hex 37 iso:37.
- [OK] iso of_hex 38 iso:38.
- [OK] iso of_hex 39 iso:39.
- [OK] iso of_hex 40 iso:40.
- [OK] iso of_hex 41 iso:41.
- [OK] iso of_hex 42 iso:42.
- [OK] iso of_hex 43 iso:43.
- [OK] iso of_hex 44 iso:44.
- [OK] iso of_hex 45 iso:45.
- [OK] iso of_hex 46 iso:46.
- [OK] iso of_hex 47 iso:47.
- [OK] iso of_hex 48 iso:48.
- [OK] iso of_hex 49 iso:49.
- [OK] iso of_hex 50 iso:50.
- [OK] iso of_hex 51 iso:51.
- [OK] iso of_hex 52 iso:52.
- [OK] iso of_hex 53 iso:53.
- [OK] iso of_hex 54 iso:54.
- [OK] iso of_hex 55 iso:55.
- [OK] iso of_hex 56 iso:56.
- [OK] iso of_hex 57 iso:57.
- [OK] iso of_hex 58 iso:58.
- [OK] iso of_hex 59 iso:59.
- [OK] iso of_hex 60 iso:60.
- [OK] iso of_hex 61 iso:61.
- [OK] iso of_hex 62 iso:62.
- [OK] iso of_hex 63 iso:63.
- [OK] iso consistent_of_hex 0 iso:0.
- [OK] iso consistent_of_hex 1 iso:1.
- [OK] iso consistent_of_hex 2 iso:2.
- [OK] iso consistent_of_hex 3 iso:3.
- [OK] iso consistent_of_hex 4 iso:4.
- [OK] iso consistent_of_hex 5 iso:5.
- [OK] iso consistent_of_hex 6 iso:6.
- [OK] iso consistent_of_hex 7 iso:7.
- [OK] iso consistent_of_hex 8 iso:8.
- [OK] iso consistent_of_hex 9 iso:9.
- [OK] iso consistent_of_hex 10 iso:10.
- [OK] iso consistent_of_hex 11 iso:11.
- [OK] iso consistent_of_hex 12 iso:12.
- [OK] iso consistent_of_hex 13 iso:13.
- [OK] iso consistent_of_hex 14 iso:14.
- [OK] iso consistent_of_hex 15 iso:15.
- [OK] iso consistent_of_hex 16 iso:16.
- [OK] iso consistent_of_hex 17 iso:17.
- [OK] iso consistent_of_hex 18 iso:18.
- [OK] iso consistent_of_hex 19 iso:19.
- [OK] iso consistent_of_hex 20 iso:20.
- [OK] iso consistent_of_hex 21 iso:21.
- [OK] iso consistent_of_hex 22 iso:22.
- [OK] iso consistent_of_hex 23 iso:23.
- [OK] iso consistent_of_hex 24 iso:24.
- [OK] iso consistent_of_hex 25 iso:25.
- [OK] iso consistent_of_hex 26 iso:26.
- [OK] iso consistent_of_hex 27 iso:27.
- [OK] iso consistent_of_hex 28 iso:28.
- [OK] iso consistent_of_hex 29 iso:29.
- [OK] iso consistent_of_hex 30 iso:30.
- [OK] iso consistent_of_hex 31 iso:31.
- [OK] iso consistent_of_hex 32 iso:32.
- [OK] iso consistent_of_hex 33 iso:33.
- [OK] iso consistent_of_hex 34 iso:34.
- [OK] iso consistent_of_hex 35 iso:35.
- [OK] iso consistent_of_hex 36 iso:36.
- [OK] iso consistent_of_hex 37 iso:37.
- [OK] iso consistent_of_hex 38 iso:38.
- [OK] iso consistent_of_hex 39 iso:39.
- [OK] iso consistent_of_hex 40 iso:40.
- [OK] iso consistent_of_hex 41 iso:41.
- [OK] iso consistent_of_hex 42 iso:42.
- [OK] iso consistent_of_hex 43 iso:43.
- [OK] iso consistent_of_hex 44 iso:44.
- [OK] iso consistent_of_hex 45 iso:45.
- [OK] iso consistent_of_hex 46 iso:46.
- [OK] iso consistent_of_hex 47 iso:47.
- [OK] iso consistent_of_hex 48 iso:48.
- [OK] iso consistent_of_hex 49 iso:49.
- [OK] iso consistent_of_hex 50 iso:50.
- [OK] iso consistent_of_hex 51 iso:51.
- [OK] iso consistent_of_hex 52 iso:52.
- [OK] iso consistent_of_hex 53 iso:53.
- [OK] iso consistent_of_hex 54 iso:54.
- [OK] iso consistent_of_hex 55 iso:55.
- [OK] iso consistent_of_hex 56 iso:56.
- [OK] iso consistent_of_hex 57 iso:57.
- [OK] iso consistent_of_hex 58 iso:58.
- [OK] iso consistent_of_hex 59 iso:59.
- [OK] iso consistent_of_hex 60 iso:60.
- [OK] iso consistent_of_hex 61 iso:61.
- [OK] iso consistent_of_hex 62 iso:62.
- [OK] iso consistent_of_hex 63 iso:63.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/digestif.0.9.0/_build/default/test/conv/_build/_tests/digestif'.
- Test Successful in 0.016s. 320 tests run.
- seed: [|195; 40; 56; 160; 83; 15; 46; 37; 177; 43; 208; 127|].
- (cd _build/default/test/c && ./test.exe --color=always)
- Testing `digestif'.
- This run has ID `35ABVE4V'.
-
- [OK] md5 0 md5.
- [OK] md5 1 md5.
- [OK] md5 2 md5.
- [OK] md5 3 md5.
- [OK] md5 4 md5.
- [OK] md5 (bigstring) 0 md5.
- [OK] md5 (bigstring) 1 md5.
- [OK] md5 (bigstring) 2 md5.
- [OK] md5 (bigstring) 3 md5.
- [OK] md5 (bigstring) 4 md5.
- [OK] sha1 0 sha1.
- [OK] sha1 1 sha1.
- [OK] sha1 2 sha1.
- [OK] sha1 3 sha1.
- [OK] sha1 4 sha1.
- [OK] sha1 (bigstring) 0 sha1.
- [OK] sha1 (bigstring) 1 sha1.
- [OK] sha1 (bigstring) 2 sha1.
- [OK] sha1 (bigstring) 3 sha1.
- [OK] sha1 (bigstring) 4 sha1.
- [OK] sha224 0 sha224.
- [OK] sha224 1 sha224.
- [OK] sha224 2 sha224.
- [OK] sha224 3 sha224.
- [OK] sha224 4 sha224.
- [OK] sha224 (bigstring) 0 sha224.
- [OK] sha224 (bigstring) 1 sha224.
- [OK] sha224 (bigstring) 2 sha224.
- [OK] sha224 (bigstring) 3 sha224.
- [OK] sha224 (bigstring) 4 sha224.
- [OK] sha256 0 sha256.
- [OK] sha256 1 sha256.
- [OK] sha256 2 sha256.
- [OK] sha256 3 sha256.
- [OK] sha256 4 sha256.
- [OK] sha256 (bigstring) 0 sha256.
- [OK] sha256 (bigstring) 1 sha256.
- [OK] sha256 (bigstring) 2 sha256.
- [OK] sha256 (bigstring) 3 sha256.
- [OK] sha256 (bigstring) 4 sha256.
- [OK] sha384 0 sha384.
- [OK] sha384 1 sha384.
- [OK] sha384 2 sha384.
- [OK] sha384 3 sha384.
- [OK] sha384 4 sha384.
- [OK] sha384 (bigstring) 0 sha384.
- [OK] sha384 (bigstring) 1 sha384.
- [OK] sha384 (bigstring) 2 sha384.
- [OK] sha384 (bigstring) 3 sha384.
- [OK] sha384 (bigstring) 4 sha384.
- [OK] sha512 0 sha512.
- [OK] sha512 1 sha512.
- [OK] sha512 2 sha512.
- [OK] sha512 3 sha512.
- [OK] sha512 4 sha512.
- [OK] sha512 (bigstring) 0 sha512.
- [OK] sha512 (bigstring) 1 sha512.
- [OK] sha512 (bigstring) 2 sha512.
- [OK] sha512 (bigstring) 3 sha512.
- [OK] sha512 (bigstring) 4 sha512.
- [OK] sha3_224 0 sha3_224.
- [OK] sha3_224 1 sha3_224.
- [OK] sha3_224 2 sha3_224.
- [OK] sha3_224 3 sha3_224.
- [OK] sha3_224 4 sha3_224.
- [OK] sha3_224 (bigstring) 0 sha3_224.
- [OK] sha3_224 (bigstring) 1 sha3_224.
- [OK] sha3_224 (bigstring) 2 sha3_224.
- [OK] sha3_224 (bigstring) 3 sha3_224.
- [OK] sha3_224 (bigstring) 4 sha3_224.
- [OK] sha3_256 0 sha3_256.
- [OK] sha3_256 1 sha3_256.
- [OK] sha3_256 2 sha3_256.
- [OK] sha3_256 3 sha3_256.
- [OK] sha3_256 4 sha3_256.
- [OK] sha3_256 (bigstring) 0 sha3_256.
- [OK] sha3_256 (bigstring) 1 sha3_256.
- [OK] sha3_256 (bigstring) 2 sha3_256.
- [OK] sha3_256 (bigstring) 3 sha3_256.
- [OK] sha3_256 (bigstring) 4 sha3_256.
- [OK] sha3_384 0 sha3_384.
- [OK] sha3_384 1 sha3_384.
- [OK] sha3_384 2 sha3_384.
- [OK] sha3_384 3 sha3_384.
- [OK] sha3_384 4 sha3_384.
- [OK] sha3_384 (bigstring) 0 sha3_384.
- [OK] sha3_384 (bigstring) 1 sha3_384.
- [OK] sha3_384 (bigstring) 2 sha3_384.
- [OK] sha3_384 (bigstring) 3 sha3_384.
- [OK] sha3_384 (bigstring) 4 sha3_384.
- [OK] sha3_512 0 sha3_512.
- [OK] sha3_512 1 sha3_512.
- [OK] sha3_512 2 sha3_512.
- [OK] sha3_512 3 sha3_512.
- [OK] sha3_512 4 sha3_512.
- [OK] sha3_512 (bigstring) 0 sha3_512.
- [OK] sha3_512 (bigstring) 1 sha3_512.
- [OK] sha3_512 (bigstring) 2 sha3_512.
- [OK] sha3_512 (bigstring) 3 sha3_512.
- [OK] sha3_512 (bigstring) 4 sha3_512.
- [OK] whirlpool 0 whirlpool.
- [OK] whirlpool 1 whirlpool.
- [OK] whirlpool 2 whirlpool.
- [OK] whirlpool 3 whirlpool.
- [OK] whirlpool 4 whirlpool.
- [OK] whirlpool (bigstring) 0 whirlpool.
- [OK] whirlpool (bigstring) 1 whirlpool.
- [OK] whirlpool (bigstring) 2 whirlpool.
- [OK] whirlpool (bigstring) 3 whirlpool.
- [OK] whirlpool (bigstring) 4 whirlpool.
- [OK] blake2b 0 blake2b.
- [OK] blake2b 1 blake2b.
- [OK] blake2b 2 blake2b.
- [OK] blake2b 3 blake2b.
- [OK] blake2b 4 blake2b.
- [OK] blake2b (bigstring) 0 blake2b.
- [OK] blake2b (bigstring) 1 blake2b.
- [OK] blake2b (bigstring) 2 blake2b.
- [OK] blake2b (bigstring) 3 blake2b.
- [OK] blake2b (bigstring) 4 blake2b.
- [OK] rmd160 0 rmd160.
- [OK] rmd160 1 rmd160.
- [OK] rmd160 2 rmd160.
- [OK] rmd160 3 rmd160.
- [OK] rmd160 4 rmd160.
- [OK] rmd160 (bigstring) 0 rmd160.
- [OK] rmd160 (bigstring) 1 rmd160.
- [OK] rmd160 (bigstring) 2 rmd160.
- [OK] rmd160 (bigstring) 3 rmd160.
- [OK] rmd160 (bigstring) 4 rmd160.
- [OK] blake2s 0 blake2s.
- [OK] blake2s 1 blake2s.
- [OK] blake2s 2 blake2s.
- [OK] blake2s 3 blake2s.
- [OK] blake2s 4 blake2s.
- [OK] blake2s (bigstring) 0 blake2s.
- [OK] blake2s (bigstring) 1 blake2s.
- [OK] blake2s (bigstring) 2 blake2s.
- [OK] blake2s (bigstring) 3 blake2s.
- [OK] blake2s (bigstring) 4 blake2s.
- [OK] blake2s (keyed, input file) 0 blake2{b,s}.
- [OK] blake2s (keyed, input file) 1 blake2{b,s}.
- [OK] blake2s (keyed, input file) 2 blake2{b,s}.
- [OK] blake2s (keyed, input file) 3 blake2{b,s}.
- [OK] blake2s (keyed, input file) 4 blake2{b,s}.
- [OK] blake2s (keyed, input file) 5 blake2{b,s}.
- [OK] blake2s (keyed, input file) 6 blake2{b,s}.
- [OK] blake2s (keyed, input file) 7 blake2{b,s}.
- [OK] blake2s (keyed, input file) 8 blake2{b,s}.
- [OK] blake2s (keyed, input file) 9 blake2{b,s}.
- [OK] blake2s (keyed, input file) 10 blake2{b,s}.
- [OK] blake2s (keyed, input file) 11 blake2{b,s}.
- [OK] blake2s (keyed, input file) 12 blake2{b,s}.
- [OK] blake2s (keyed, input file) 13 blake2{b,s}.
- [OK] blake2s (keyed, input file) 14 blake2{b,s}.
- [OK] blake2s (keyed, input file) 15 blake2{b,s}.
- [OK] blake2s (keyed, input file) 16 blake2{b,s}.
- [OK] blake2s (keyed, input file) 17 blake2{b,s}.
- [OK] blake2s (keyed, input file) 18 blake2{b,s}.
- [OK] blake2s (keyed, input file) 19 blake2{b,s}.
- [OK] blake2s (keyed, input file) 20 blake2{b,s}.
- [OK] blake2s (keyed, input file) 21 blake2{b,s}.
- [OK] blake2s (keyed, input file) 22 blake2{b,s}.
- [OK] blake2s (keyed, input file) 23 blake2{b,s}.
- [OK] blake2s (keyed, input file) 24 blake2{b,s}.
- [OK] blake2s (keyed, input file) 25 blake2{b,s}.
- [OK] blake2s (keyed, input file) 26 blake2{b,s}.
- [OK] blake2s (keyed, input file) 27 blake2{b,s}.
- [OK] blake2s (keyed, input file) 28 blake2{b,s}.
- [OK] blake2s (keyed, input file) 29 blake2{b,s}.
- [OK] blake2s (keyed, input file) 30 blake2{b,s}.
- [OK] blake2s (keyed, input file) 31 blake2{b,s}.
- [OK] blake2s (keyed, input file) 32 blake2{b,s}.
- [OK] blake2s (keyed, input file) 33 blake2{b,s}.
- [OK] blake2s (keyed, input file) 34 blake2{b,s}.
- [OK] blake2s (keyed, input file) 35 blake2{b,s}.
- [OK] blake2s (keyed, input file) 36 blake2{b,s}.
- [OK] blake2s (keyed, input file) 37 blake2{b,s}.
- [OK] blake2s (keyed, input file) 38 blake2{b,s}.
- [OK] blake2s (keyed, input file) 39 blake2{b,s}.
- [OK] blake2s (keyed, input file) 40 blake2{b,s}.
- [OK] blake2s (keyed, input file) 41 blake2{b,s}.
- [OK] blake2s (keyed, input file) 42 blake2{b,s}.
- [OK] blake2s (keyed, input file) 43 blake2{b,s}.
- [OK] blake2s (keyed, input file) 44 blake2{b,s}.
- [OK] blake2s (keyed, input file) 45 blake2{b,s}.
- [OK] blake2s (keyed, input file) 46 blake2{b,s}.
- [OK] blake2s (keyed, input file) 47 blake2{b,s}.
- [OK] blake2s (keyed, input file) 48 blake2{b,s}.
- [OK] blake2s (keyed, input file) 49 blake2{b,s}.
- [OK] blake2s (keyed, input file) 50 blake2{b,s}.
- [OK] blake2s (keyed, input file) 51 blake2{b,s}.
- [OK] blake2s (keyed, input file) 52 blake2{b,s}.
- [OK] blake2s (keyed, input file) 53 blake2{b,s}.
- [OK] blake2s (keyed, input file) 54 blake2{b,s}.
- [OK] blake2s (keyed, input file) 55 blake2{b,s}.
- [OK] blake2s (keyed, input file) 56 blake2{b,s}.
- [OK] blake2s (keyed, input file) 57 blake2{b,s}.
- [OK] blake2s (keyed, input file) 58 blake2{b,s}.
- [OK] blake2s (keyed, input file) 59 blake2{b,s}.
- [OK] blake2s (keyed, input file) 60 blake2{b,s}.
- [OK] blake2s (keyed, input file) 61 blake2{b,s}.
- [OK] blake2s (keyed, input file) 62 blake2{b,s}.
- [OK] blake2s (keyed, input file) 63 blake2{b,s}.
- [OK] blake2s (keyed, input file) 64 blake2{b,s}.
- [OK] blake2s (keyed, input file) 65 blake2{b,s}.
- [OK] blake2s (keyed, input file) 66 blake2{b,s}.
- [OK] blake2s (keyed, input file) 67 blake2{b,s}.
- [OK] blake2s (keyed, input file) 68 blake2{b,s}.
- [OK] blake2s (keyed, input file) 69 blake2{b,s}.
- [OK] blake2s (keyed, input file) 70 blake2{b,s}.
- [OK] blake2s (keyed, input file) 71 blake2{b,s}.
- [OK] blake2s (keyed, input file) 72 blake2{b,s}.
- [OK] blake2s (keyed, input file) 73 blake2{b,s}.
- [OK] blake2s (keyed, input file) 74 blake2{b,s}.
- [OK] blake2s (keyed, input file) 75 blake2{b,s}.
- [OK] blake2s (keyed, input file) 76 blake2{b,s}.
- [OK] blake2s (keyed, input file) 77 blake2{b,s}.
- [OK] blake2s (keyed, input file) 78 blake2{b,s}.
- [OK] blake2s (keyed, input file) 79 blake2{b,s}.
- [OK] blake2s (keyed, input file) 80 blake2{b,s}.
- [OK] blake2s (keyed, input file) 81 blake2{b,s}.
- [OK] blake2s (keyed, input file) 82 blake2{b,s}.
- [OK] blake2s (keyed, input file) 83 blake2{b,s}.
- [OK] blake2s (keyed, input file) 84 blake2{b,s}.
- [OK] blake2s (keyed, input file) 85 blake2{b,s}.
- [OK] blake2s (keyed, input file) 86 blake2{b,s}.
- [OK] blake2s (keyed, input file) 87 blake2{b,s}.
- [OK] blake2s (keyed, input file) 88 blake2{b,s}.
- [OK] blake2s (keyed, input file) 89 blake2{b,s}.
- [OK] blake2s (keyed, input file) 90 blake2{b,s}.
- [OK] blake2s (keyed, input file) 91 blake2{b,s}.
- [OK] blake2s (keyed, input file) 92 blake2{b,s}.
- [OK] blake2s (keyed, input file) 93 blake2{b,s}.
- [OK] blake2s (keyed, input file) 94 blake2{b,s}.
- [OK] blake2s (keyed, input file) 95 blake2{b,s}.
- [OK] blake2s (keyed, input file) 96 blake2{b,s}.
- [OK] blake2s (keyed, input file) 97 blake2{b,s}.
- [OK] blake2s (keyed, input file) 98 blake2{b,s}.
- [OK] blake2s (keyed, input file) 99 blake2{b,s}.
- [OK] blake2s (keyed, input file) 100 blake2{b,s}.
- [OK] blake2s (keyed, input file) 101 blake2{b,s}.
- [OK] blake2s (keyed, input file) 102 blake2{b,s}.
- [OK] blake2s (keyed, input file) 103 blake2{b,s}.
- [OK] blake2s (keyed, input file) 104 blake2{b,s}.
- [OK] blake2s (keyed, input file) 105 blake2{b,s}.
- [OK] blake2s (keyed, input file) 106 blake2{b,s}.
- [OK] blake2s (keyed, input file) 107 blake2{b,s}.
- [OK] blake2s (keyed, input file) 108 blake2{b,s}.
- [OK] blake2s (keyed, input file) 109 blake2{b,s}.
- [OK] blake2s (keyed, input file) 110 blake2{b,s}.
- [OK] blake2s (keyed, input file) 111 blake2{b,s}.
- [OK] blake2s (keyed, input file) 112 blake2{b,s}.
- [OK] blake2s (keyed, input file) 113 blake2{b,s}.
- [OK] blake2s (keyed, input file) 114 blake2{b,s}.
- [OK] blake2s (keyed, input file) 115 blake2{b,s}.
- [OK] blake2s (keyed, input file) 116 blake2{b,s}.
- [OK] blake2s (keyed, input file) 117 blake2{b,s}.
- [OK] blake2s (keyed, input file) 118 blake2{b,s}.
- [OK] blake2s (keyed, input file) 119 blake2{b,s}.
- [OK] blake2s (keyed, input file) 120 blake2{b,s}.
- [OK] blake2s (keyed, input file) 121 blake2{b,s}.
- [OK] blake2s (keyed, input file) 122 blake2{b,s}.
- [OK] blake2s (keyed, input file) 123 blake2{b,s}.
- [OK] blake2s (keyed, input file) 124 blake2{b,s}.
- [OK] blake2s (keyed, input file) 125 blake2{b,s}.
- [OK] blake2s (keyed, input file) 126 blake2{b,s}.
- [OK] blake2s (keyed, input file) 127 blake2{b,s}.
- [OK] blake2s (keyed, input file) 128 blake2{b,s}.
- [OK] blake2s (keyed, input file) 129 blake2{b,s}.
- [OK] blake2s (keyed, input file) 130 blake2{b,s}.
- [OK] blake2s (keyed, input file) 131 blake2{b,s}.
- [OK] blake2s (keyed, input file) 132 blake2{b,s}.
- [OK] blake2s (keyed, input file) 133 blake2{b,s}.
- [OK] blake2s (keyed, input file) 134 blake2{b,s}.
- [OK] blake2s (keyed, input file) 135 blake2{b,s}.
- [OK] blake2s (keyed, input file) 136 blake2{b,s}.
- [OK] blake2s (keyed, input file) 137 blake2{b,s}.
- [OK] blake2s (keyed, input file) 138 blake2{b,s}.
- [OK] blake2s (keyed, input file) 139 blake2{b,s}.
- [OK] blake2s (keyed, input file) 140 blake2{b,s}.
- [OK] blake2s (keyed, input file) 141 blake2{b,s}.
- [OK] blake2s (keyed, input file) 142 blake2{b,s}.
- [OK] blake2s (keyed, input file) 143 blake2{b,s}.
- [OK] blake2s (keyed, input file) 144 blake2{b,s}.
- [OK] blake2s (keyed, input file) 145 blake2{b,s}.
- [OK] blake2s (keyed, input file) 146 blake2{b,s}.
- [OK] blake2s (keyed, input file) 147 blake2{b,s}.
- [OK] blake2s (keyed, input file) 148 blake2{b,s}.
- [OK] blake2s (keyed, input file) 149 blake2{b,s}.
- [OK] blake2s (keyed, input file) 150 blake2{b,s}.
- [OK] blake2s (keyed, input file) 151 blake2{b,s}.
- [OK] blake2s (keyed, input file) 152 blake2{b,s}.
- [OK] blake2s (keyed, input file) 153 blake2{b,s}.
- [OK] blake2s (keyed, input file) 154 blake2{b,s}.
- [OK] blake2s (keyed, input file) 155 blake2{b,s}.
- [OK] blake2s (keyed, input file) 156 blake2{b,s}.
- [OK] blake2s (keyed, input file) 157 blake2{b,s}.
- [OK] blake2s (keyed, input file) 158 blake2{b,s}.
- [OK] blake2s (keyed, input file) 159 blake2{b,s}.
- [OK] blake2s (keyed, input file) 160 blake2{b,s}.
- [OK] blake2s (keyed, input file) 161 blake2{b,s}.
- [OK] blake2s (keyed, input file) 162 blake2{b,s}.
- [OK] blake2s (keyed, input file) 163 blake2{b,s}.
- [OK] blake2s (keyed, input file) 164 blake2{b,s}.
- [OK] blake2s (keyed, input file) 165 blake2{b,s}.
- [OK] blake2s (keyed, input file) 166 blake2{b,s}.
- [OK] blake2s (keyed, input file) 167 blake2{b,s}.
- [OK] blake2s (keyed, input file) 168 blake2{b,s}.
- [OK] blake2s (keyed, input file) 169 blake2{b,s}.
- [OK] blake2s (keyed, input file) 170 blake2{b,s}.
- [OK] blake2s (keyed, input file) 171 blake2{b,s}.
- [OK] blake2s (keyed, input file) 172 blake2{b,s}.
- [OK] blake2s (keyed, input file) 173 blake2{b,s}.
- [OK] blake2s (keyed, input file) 174 blake2{b,s}.
- [OK] blake2s (keyed, input file) 175 blake2{b,s}.
- [OK] blake2s (keyed, input file) 176 blake2{b,s}.
- [OK] blake2s (keyed, input file) 177 blake2{b,s}.
- [OK] blake2s (keyed, input file) 178 blake2{b,s}.
- [OK] blake2s (keyed, input file) 179 blake2{b,s}.
- [OK] blake2s (keyed, input file) 180 blake2{b,s}.
- [OK] blake2s (keyed, input file) 181 blake2{b,s}.
- [OK] blake2s (keyed, input file) 182 blake2{b,s}.
- [OK] blake2s (keyed, input file) 183 blake2{b,s}.
- [OK] blake2s (keyed, input file) 184 blake2{b,s}.
- [OK] blake2s (keyed, input file) 185 blake2{b,s}.
- [OK] blake2s (keyed, input file) 186 blake2{b,s}.
- [OK] blake2s (keyed, input file) 187 blake2{b,s}.
- [OK] blake2s (keyed, input file) 188 blake2{b,s}.
- [OK] blake2s (keyed, input file) 189 blake2{b,s}.
- [OK] blake2s (keyed, input file) 190 blake2{b,s}.
- [OK] blake2s (keyed, input file) 191 blake2{b,s}.
- [OK] blake2s (keyed, input file) 192 blake2{b,s}.
- [OK] blake2s (keyed, input file) 193 blake2{b,s}.
- [OK] blake2s (keyed, input file) 194 blake2{b,s}.
- [OK] blake2s (keyed, input file) 195 blake2{b,s}.
- [OK] blake2s (keyed, input file) 196 blake2{b,s}.
- [OK] blake2s (keyed, input file) 197 blake2{b,s}.
- [OK] blake2s (keyed, input file) 198 blake2{b,s}.
- [OK] blake2s (keyed, input file) 199 blake2{b,s}.
- [OK] blake2s (keyed, input file) 200 blake2{b,s}.
- [OK] blake2s (keyed, input file) 201 blake2{b,s}.
- [OK] blake2s (keyed, input file) 202 blake2{b,s}.
- [OK] blake2s (keyed, input file) 203 blake2{b,s}.
- [OK] blake2s (keyed, input file) 204 blake2{b,s}.
- [OK] blake2s (keyed, input file) 205 blake2{b,s}.
- [OK] blake2s (keyed, input file) 206 blake2{b,s}.
- [OK] blake2s (keyed, input file) 207 blake2{b,s}.
- [OK] blake2s (keyed, input file) 208 blake2{b,s}.
- [OK] blake2s (keyed, input file) 209 blake2{b,s}.
- [OK] blake2s (keyed, input file) 210 blake2{b,s}.
- [OK] blake2s (keyed, input file) 211 blake2{b,s}.
- [OK] blake2s (keyed, input file) 212 blake2{b,s}.
- [OK] blake2s (keyed, input file) 213 blake2{b,s}.
- [OK] blake2s (keyed, input file) 214 blake2{b,s}.
- [OK] blake2s (keyed, input file) 215 blake2{b,s}.
- [OK] blake2s (keyed, input file) 216 blake2{b,s}.
- [OK] blake2s (keyed, input file) 217 blake2{b,s}.
- [OK] blake2s (keyed, input file) 218 blake2{b,s}.
- [OK] blake2s (keyed, input file) 219 blake2{b,s}.
- [OK] blake2s (keyed, input file) 220 blake2{b,s}.
- [OK] blake2s (keyed, input file) 221 blake2{b,s}.
- [OK] blake2s (keyed, input file) 222 blake2{b,s}.
- [OK] blake2s (keyed, input file) 223 blake2{b,s}.
- [OK] blake2s (keyed, input file) 224 blake2{b,s}.
- [OK] blake2s (keyed, input file) 225 blake2{b,s}.
- [OK] blake2s (keyed, input file) 226 blake2{b,s}.
- [OK] blake2s (keyed, input file) 227 blake2{b,s}.
- [OK] blake2s (keyed, input file) 228 blake2{b,s}.
- [OK] blake2s (keyed, input file) 229 blake2{b,s}.
- [OK] blake2s (keyed, input file) 230 blake2{b,s}.
- [OK] blake2s (keyed, input file) 231 blake2{b,s}.
- [OK] blake2s (keyed, input file) 232 blake2{b,s}.
- [OK] blake2s (keyed, input file) 233 blake2{b,s}.
- [OK] blake2s (keyed, input file) 234 blake2{b,s}.
- [OK] blake2s (keyed, input file) 235 blake2{b,s}.
- [OK] blake2s (keyed, input file) 236 blake2{b,s}.
- [OK] blake2s (keyed, input file) 237 blake2{b,s}.
- [OK] blake2s (keyed, input file) 238 blake2{b,s}.
- [OK] blake2s (keyed, input file) 239 blake2{b,s}.
- [OK] blake2s (keyed, input file) 240 blake2{b,s}.
- [OK] blake2s (keyed, input file) 241 blake2{b,s}.
- [OK] blake2s (keyed, input file) 242 blake2{b,s}.
- [OK] blake2s (keyed, input file) 243 blake2{b,s}.
- [OK] blake2s (keyed, input file) 244 blake2{b,s}.
- [OK] blake2s (keyed, input file) 245 blake2{b,s}.
- [OK] blake2s (keyed, input file) 246 blake2{b,s}.
- [OK] blake2s (keyed, input file) 247 blake2{b,s}.
- [OK] blake2s (keyed, input file) 248 blake2{b,s}.
- [OK] blake2s (keyed, input file) 249 blake2{b,s}.
- [OK] blake2s (keyed, input file) 250 blake2{b,s}.
- [OK] blake2s (keyed, input file) 251 blake2{b,s}.
- [OK] blake2s (keyed, input file) 252 blake2{b,s}.
- [OK] blake2s (keyed, input file) 253 blake2{b,s}.
- [OK] blake2s (keyed, input file) 254 blake2{b,s}.
- [OK] blake2b (keyed, input file) 0 blake2{b,s}.
- [OK] blake2b (keyed, input file) 1 blake2{b,s}.
- [OK] blake2b (keyed, input file) 2 blake2{b,s}.
- [OK] blake2b (keyed, input file) 3 blake2{b,s}.
- [OK] blake2b (keyed, input file) 4 blake2{b,s}.
- [OK] blake2b (keyed, input file) 5 blake2{b,s}.
- [OK] blake2b (keyed, input file) 6 blake2{b,s}.
- [OK] blake2b (keyed, input file) 7 blake2{b,s}.
- [OK] blake2b (keyed, input file) 8 blake2{b,s}.
- [OK] blake2b (keyed, input file) 9 blake2{b,s}.
- [OK] blake2b (keyed, input file) 10 blake2{b,s}.
- [OK] blake2b (keyed, input file) 11 blake2{b,s}.
- [OK] blake2b (keyed, input file) 12 blake2{b,s}.
- [OK] blake2b (keyed, input file) 13 blake2{b,s}.
- [OK] blake2b (keyed, input file) 14 blake2{b,s}.
- [OK] blake2b (keyed, input file) 15 blake2{b,s}.
- [OK] blake2b (keyed, input file) 16 blake2{b,s}.
- [OK] blake2b (keyed, input file) 17 blake2{b,s}.
- [OK] blake2b (keyed, input file) 18 blake2{b,s}.
- [OK] blake2b (keyed, input file) 19 blake2{b,s}.
- [OK] blake2b (keyed, input file) 20 blake2{b,s}.
- [OK] blake2b (keyed, input file) 21 blake2{b,s}.
- [OK] blake2b (keyed, input file) 22 blake2{b,s}.
- [OK] blake2b (keyed, input file) 23 blake2{b,s}.
- [OK] blake2b (keyed, input file) 24 blake2{b,s}.
- [OK] blake2b (keyed, input file) 25 blake2{b,s}.
- [OK] blake2b (keyed, input file) 26 blake2{b,s}.
- [OK] blake2b (keyed, input file) 27 blake2{b,s}.
- [OK] blake2b (keyed, input file) 28 blake2{b,s}.
- [OK] blake2b (keyed, input file) 29 blake2{b,s}.
- [OK] blake2b (keyed, input file) 30 blake2{b,s}.
- [OK] blake2b (keyed, input file) 31 blake2{b,s}.
- [OK] blake2b (keyed, input file) 32 blake2{b,s}.
- [OK] blake2b (keyed, input file) 33 blake2{b,s}.
- [OK] blake2b (keyed, input file) 34 blake2{b,s}.
- [OK] blake2b (keyed, input file) 35 blake2{b,s}.
- [OK] blake2b (keyed, input file) 36 blake2{b,s}.
- [OK] blake2b (keyed, input file) 37 blake2{b,s}.
- [OK] blake2b (keyed, input file) 38 blake2{b,s}.
- [OK] blake2b (keyed, input file) 39 blake2{b,s}.
- [OK] blake2b (keyed, input file) 40 blake2{b,s}.
- [OK] blake2b (keyed, input file) 41 blake2{b,s}.
- [OK] blake2b (keyed, input file) 42 blake2{b,s}.
- [OK] blake2b (keyed, input file) 43 blake2{b,s}.
- [OK] blake2b (keyed, input file) 44 blake2{b,s}.
- [OK] blake2b (keyed, input file) 45 blake2{b,s}.
- [OK] blake2b (keyed, input file) 46 blake2{b,s}.
- [OK] blake2b (keyed, input file) 47 blake2{b,s}.
- [OK] blake2b (keyed, input file) 48 blake2{b,s}.
- [OK] blake2b (keyed, input file) 49 blake2{b,s}.
- [OK] blake2b (keyed, input file) 50 blake2{b,s}.
- [OK] blake2b (keyed, input file) 51 blake2{b,s}.
- [OK] blake2b (keyed, input file) 52 blake2{b,s}.
- [OK] blake2b (keyed, input file) 53 blake2{b,s}.
- [OK] blake2b (keyed, input file) 54 blake2{b,s}.
- [OK] blake2b (keyed, input file) 55 blake2{b,s}.
- [OK] blake2b (keyed, input file) 56 blake2{b,s}.
- [OK] blake2b (keyed, input file) 57 blake2{b,s}.
- [OK] blake2b (keyed, input file) 58 blake2{b,s}.
- [OK] blake2b (keyed, input file) 59 blake2{b,s}.
- [OK] blake2b (keyed, input file) 60 blake2{b,s}.
- [OK] blake2b (keyed, input file) 61 blake2{b,s}.
- [OK] blake2b (keyed, input file) 62 blake2{b,s}.
- [OK] blake2b (keyed, input file) 63 blake2{b,s}.
- [OK] blake2b (keyed, input file) 64 blake2{b,s}.
- [OK] blake2b (keyed, input file) 65 blake2{b,s}.
- [OK] blake2b (keyed, input file) 66 blake2{b,s}.
- [OK] blake2b (keyed, input file) 67 blake2{b,s}.
- [OK] blake2b (keyed, input file) 68 blake2{b,s}.
- [OK] blake2b (keyed, input file) 69 blake2{b,s}.
- [OK] blake2b (keyed, input file) 70 blake2{b,s}.
- [OK] blake2b (keyed, input file) 71 blake2{b,s}.
- [OK] blake2b (keyed, input file) 72 blake2{b,s}.
- [OK] blake2b (keyed, input file) 73 blake2{b,s}.
- [OK] blake2b (keyed, input file) 74 blake2{b,s}.
- [OK] blake2b (keyed, input file) 75 blake2{b,s}.
- [OK] blake2b (keyed, input file) 76 blake2{b,s}.
- [OK] blake2b (keyed, input file) 77 blake2{b,s}.
- [OK] blake2b (keyed, input file) 78 blake2{b,s}.
- [OK] blake2b (keyed, input file) 79 blake2{b,s}.
- [OK] blake2b (keyed, input file) 80 blake2{b,s}.
- [OK] blake2b (keyed, input file) 81 blake2{b,s}.
- [OK] blake2b (keyed, input file) 82 blake2{b,s}.
- [OK] blake2b (keyed, input file) 83 blake2{b,s}.
- [OK] blake2b (keyed, input file) 84 blake2{b,s}.
- [OK] blake2b (keyed, input file) 85 blake2{b,s}.
- [OK] blake2b (keyed, input file) 86 blake2{b,s}.
- [OK] blake2b (keyed, input file) 87 blake2{b,s}.
- [OK] blake2b (keyed, input file) 88 blake2{b,s}.
- [OK] blake2b (keyed, input file) 89 blake2{b,s}.
- [OK] blake2b (keyed, input file) 90 blake2{b,s}.
- [OK] blake2b (keyed, input file) 91 blake2{b,s}.
- [OK] blake2b (keyed, input file) 92 blake2{b,s}.
- [OK] blake2b (keyed, input file) 93 blake2{b,s}.
- [OK] blake2b (keyed, input file) 94 blake2{b,s}.
- [OK] blake2b (keyed, input file) 95 blake2{b,s}.
- [OK] blake2b (keyed, input file) 96 blake2{b,s}.
- [OK] blake2b (keyed, input file) 97 blake2{b,s}.
- [OK] blake2b (keyed, input file) 98 blake2{b,s}.
- [OK] blake2b (keyed, input file) 99 blake2{b,s}.
- [OK] blake2b (keyed, input file) 100 blake2{b,s}.
- [OK] blake2b (keyed, input file) 101 blake2{b,s}.
- [OK] blake2b (keyed, input file) 102 blake2{b,s}.
- [OK] blake2b (keyed, input file) 103 blake2{b,s}.
- [OK] blake2b (keyed, input file) 104 blake2{b,s}.
- [OK] blake2b (keyed, input file) 105 blake2{b,s}.
- [OK] blake2b (keyed, input file) 106 blake2{b,s}.
- [OK] blake2b (keyed, input file) 107 blake2{b,s}.
- [OK] blake2b (keyed, input file) 108 blake2{b,s}.
- [OK] blake2b (keyed, input file) 109 blake2{b,s}.
- [OK] blake2b (keyed, input file) 110 blake2{b,s}.
- [OK] blake2b (keyed, input file) 111 blake2{b,s}.
- [OK] blake2b (keyed, input file) 112 blake2{b,s}.
- [OK] blake2b (keyed, input file) 113 blake2{b,s}.
- [OK] blake2b (keyed, input file) 114 blake2{b,s}.
- [OK] blake2b (keyed, input file) 115 blake2{b,s}.
- [OK] blake2b (keyed, input file) 116 blake2{b,s}.
- [OK] blake2b (keyed, input file) 117 blake2{b,s}.
- [OK] blake2b (keyed, input file) 118 blake2{b,s}.
- [OK] blake2b (keyed, input file) 119 blake2{b,s}.
- [OK] blake2b (keyed, input file) 120 blake2{b,s}.
- [OK] blake2b (keyed, input file) 121 blake2{b,s}.
- [OK] blake2b (keyed, input file) 122 blake2{b,s}.
- [OK] blake2b (keyed, input file) 123 blake2{b,s}.
- [OK] blake2b (keyed, input file) 124 blake2{b,s}.
- [OK] blake2b (keyed, input file) 125 blake2{b,s}.
- [OK] blake2b (keyed, input file) 126 blake2{b,s}.
- [OK] blake2b (keyed, input file) 127 blake2{b,s}.
- [OK] blake2b (keyed, input file) 128 blake2{b,s}.
- [OK] blake2b (keyed, input file) 129 blake2{b,s}.
- [OK] blake2b (keyed, input file) 130 blake2{b,s}.
- [OK] blake2b (keyed, input file) 131 blake2{b,s}.
- [OK] blake2b (keyed, input file) 132 blake2{b,s}.
- [OK] blake2b (keyed, input file) 133 blake2{b,s}.
- [OK] blake2b (keyed, input file) 134 blake2{b,s}.
- [OK] blake2b (keyed, input file) 135 blake2{b,s}.
- [OK] blake2b (keyed, input file) 136 blake2{b,s}.
- [OK] blake2b (keyed, input file) 137 blake2{b,s}.
- [OK] blake2b (keyed, input file) 138 blake2{b,s}.
- [OK] blake2b (keyed, input file) 139 blake2{b,s}.
- [OK] blake2b (keyed, input file) 140 blake2{b,s}.
- [OK] blake2b (keyed, input file) 141 blake2{b,s}.
- [OK] blake2b (keyed, input file) 142 blake2{b,s}.
- [OK] blake2b (keyed, input file) 143 blake2{b,s}.
- [OK] blake2b (keyed, input file) 144 blake2{b,s}.
- [OK] blake2b (keyed, input file) 145 blake2{b,s}.
- [OK] blake2b (keyed, input file) 146 blake2{b,s}.
- [OK] blake2b (keyed, input file) 147 blake2{b,s}.
- [OK] blake2b (keyed, input file) 148 blake2{b,s}.
- [OK] blake2b (keyed, input file) 149 blake2{b,s}.
- [OK] blake2b (keyed, input file) 150 blake2{b,s}.
- [OK] blake2b (keyed, input file) 151 blake2{b,s}.
- [OK] blake2b (keyed, input file) 152 blake2{b,s}.
- [OK] blake2b (keyed, input file) 153 blake2{b,s}.
- [OK] blake2b (keyed, input file) 154 blake2{b,s}.
- [OK] blake2b (keyed, input file) 155 blake2{b,s}.
- [OK] blake2b (keyed, input file) 156 blake2{b,s}.
- [OK] blake2b (keyed, input file) 157 blake2{b,s}.
- [OK] blake2b (keyed, input file) 158 blake2{b,s}.
- [OK] blake2b (keyed, input file) 159 blake2{b,s}.
- [OK] blake2b (keyed, input file) 160 blake2{b,s}.
- [OK] blake2b (keyed, input file) 161 blake2{b,s}.
- [OK] blake2b (keyed, input file) 162 blake2{b,s}.
- [OK] blake2b (keyed, input file) 163 blake2{b,s}.
- [OK] blake2b (keyed, input file) 164 blake2{b,s}.
- [OK] blake2b (keyed, input file) 165 blake2{b,s}.
- [OK] blake2b (keyed, input file) 166 blake2{b,s}.
- [OK] blake2b (keyed, input file) 167 blake2{b,s}.
- [OK] blake2b (keyed, input file) 168 blake2{b,s}.
- [OK] blake2b (keyed, input file) 169 blake2{b,s}.
- [OK] blake2b (keyed, input file) 170 blake2{b,s}.
- [OK] blake2b (keyed, input file) 171 blake2{b,s}.
- [OK] blake2b (keyed, input file) 172 blake2{b,s}.
- [OK] blake2b (keyed, input file) 173 blake2{b,s}.
- [OK] blake2b (keyed, input file) 174 blake2{b,s}.
- [OK] blake2b (keyed, input file) 175 blake2{b,s}.
- [OK] blake2b (keyed, input file) 176 blake2{b,s}.
- [OK] blake2b (keyed, input file) 177 blake2{b,s}.
- [OK] blake2b (keyed, input file) 178 blake2{b,s}.
- [OK] blake2b (keyed, input file) 179 blake2{b,s}.
- [OK] blake2b (keyed, input file) 180 blake2{b,s}.
- [OK] blake2b (keyed, input file) 181 blake2{b,s}.
- [OK] blake2b (keyed, input file) 182 blake2{b,s}.
- [OK] blake2b (keyed, input file) 183 blake2{b,s}.
- [OK] blake2b (keyed, input file) 184 blake2{b,s}.
- [OK] blake2b (keyed, input file) 185 blake2{b,s}.
- [OK] blake2b (keyed, input file) 186 blake2{b,s}.
- [OK] blake2b (keyed, input file) 187 blake2{b,s}.
- [OK] blake2b (keyed, input file) 188 blake2{b,s}.
- [OK] blake2b (keyed, input file) 189 blake2{b,s}.
- [OK] blake2b (keyed, input file) 190 blake2{b,s}.
- [OK] blake2b (keyed, input file) 191 blake2{b,s}.
- [OK] blake2b (keyed, input file) 192 blake2{b,s}.
- [OK] blake2b (keyed, input file) 193 blake2{b,s}.
- [OK] blake2b (keyed, input file) 194 blake2{b,s}.
- [OK] blake2b (keyed, input file) 195 blake2{b,s}.
- [OK] blake2b (keyed, input file) 196 blake2{b,s}.
- [OK] blake2b (keyed, input file) 197 blake2{b,s}.
- [OK] blake2b (keyed, input file) 198 blake2{b,s}.
- [OK] blake2b (keyed, input file) 199 blake2{b,s}.
- [OK] blake2b (keyed, input file) 200 blake2{b,s}.
- [OK] blake2b (keyed, input file) 201 blake2{b,s}.
- [OK] blake2b (keyed, input file) 202 blake2{b,s}.
- [OK] blake2b (keyed, input file) 203 blake2{b,s}.
- [OK] blake2b (keyed, input file) 204 blake2{b,s}.
- [OK] blake2b (keyed, input file) 205 blake2{b,s}.
- [OK] blake2b (keyed, input file) 206 blake2{b,s}.
- [OK] blake2b (keyed, input file) 207 blake2{b,s}.
- [OK] blake2b (keyed, input file) 208 blake2{b,s}.
- [OK] blake2b (keyed, input file) 209 blake2{b,s}.
- [OK] blake2b (keyed, input file) 210 blake2{b,s}.
- [OK] blake2b (keyed, input file) 211 blake2{b,s}.
- [OK] blake2b (keyed, input file) 212 blake2{b,s}.
- [OK] blake2b (keyed, input file) 213 blake2{b,s}.
- [OK] blake2b (keyed, input file) 214 blake2{b,s}.
- [OK] blake2b (keyed, input file) 215 blake2{b,s}.
- [OK] blake2b (keyed, input file) 216 blake2{b,s}.
- [OK] blake2b (keyed, input file) 217 blake2{b,s}.
- [OK] blake2b (keyed, input file) 218 blake2{b,s}.
- [OK] blake2b (keyed, input file) 219 blake2{b,s}.
- [OK] blake2b (keyed, input file) 220 blake2{b,s}.
- [OK] blake2b (keyed, input file) 221 blake2{b,s}.
- [OK] blake2b (keyed, input file) 222 blake2{b,s}.
- [OK] blake2b (keyed, input file) 223 blake2{b,s}.
- [OK] blake2b (keyed, input file) 224 blake2{b,s}.
- [OK] blake2b (keyed, input file) 225 blake2{b,s}.
- [OK] blake2b (keyed, input file) 226 blake2{b,s}.
- [OK] blake2b (keyed, input file) 227 blake2{b,s}.
- [OK] blake2b (keyed, input file) 228 blake2{b,s}.
- [OK] blake2b (keyed, input file) 229 blake2{b,s}.
- [OK] blake2b (keyed, input file) 230 blake2{b,s}.
- [OK] blake2b (keyed, input file) 231 blake2{b,s}.
- [OK] blake2b (keyed, input file) 232 blake2{b,s}.
- [OK] blake2b (keyed, input file) 233 blake2{b,s}.
- [OK] blake2b (keyed, input file) 234 blake2{b,s}.
- [OK] blake2b (keyed, input file) 235 blake2{b,s}.
- [OK] blake2b (keyed, input file) 236 blake2{b,s}.
- [OK] blake2b (keyed, input file) 237 blake2{b,s}.
- [OK] blake2b (keyed, input file) 238 blake2{b,s}.
- [OK] blake2b (keyed, input file) 239 blake2{b,s}.
- [OK] blake2b (keyed, input file) 240 blake2{b,s}.
- [OK] blake2b (keyed, input file) 241 blake2{b,s}.
- [OK] blake2b (keyed, input file) 242 blake2{b,s}.
- [OK] blake2b (keyed, input file) 243 blake2{b,s}.
- [OK] blake2b (keyed, input file) 244 blake2{b,s}.
- [OK] blake2b (keyed, input file) 245 blake2{b,s}.
- [OK] blake2b (keyed, input file) 246 blake2{b,s}.
- [OK] blake2b (keyed, input file) 247 blake2{b,s}.
- [OK] blake2b (keyed, input file) 248 blake2{b,s}.
- [OK] blake2b (keyed, input file) 249 blake2{b,s}.
- [OK] blake2b (keyed, input file) 250 blake2{b,s}.
- [OK] blake2b (keyed, input file) 251 blake2{b,s}.
- [OK] blake2b (keyed, input file) 252 blake2{b,s}.
- [OK] blake2b (keyed, input file) 253 blake2{b,s}.
- [OK] blake2b (keyed, input file) 254 blake2{b,s}.
- [OK] blake2s (specialization) 0 BLAKE2S (digest-size...
- [OK] blake2s (specialization) 1 BLAKE2S (digest-size...
- [OK] blake2s (specialization) 2 BLAKE2S (digest-size...
- [OK] blake2b (specialization) 0 BLAKE2B (digest-size...
- [OK] blake2b (specialization) 1 BLAKE2B (digest-size...
- [OK] blake2b (specialization) 2 BLAKE2B (digest-size...
- [OK] ripemd160 0 rmd160.
- [OK] ripemd160 1 rmd160.
- [OK] ripemd160 2 rmd160.
- [OK] ripemd160 3 rmd160.
- [OK] ripemd160 4 rmd160.
- [OK] ripemd160 5 rmd160.
- [OK] ripemd160 6 rmd160.
- [OK] ripemd160 7 rmd160.
- [OK] ripemd160 8 give me a million.
- [OK] sha3 (vector tests) 0 ../sha3_224_fips_202...
- [OK] sha3 (vector tests) 1 ../sha3_256_fips_202...
- [OK] sha3 (vector tests) 2 ../sha3_384_fips_202...
- [OK] sha3 (vector tests) 3 ../sha3_512_fips_202...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/digestif.0.9.0/_build/default/test/c/_build/_tests/digestif'.
- Test Successful in 0.299s. 669 tests run.
- (cd _build/default/test/ocaml && ./test.exe --color=always)
- Testing `digestif'.
- This run has ID `HXPI7DK6'.
-
- [OK] md5 0 md5.
- [OK] md5 1 md5.
- [OK] md5 2 md5.
- [OK] md5 3 md5.
- [OK] md5 4 md5.
- [OK] md5 (bigstring) 0 md5.
- [OK] md5 (bigstring) 1 md5.
- [OK] md5 (bigstring) 2 md5.
- [OK] md5 (bigstring) 3 md5.
- [OK] md5 (bigstring) 4 md5.
- [OK] sha1 0 sha1.
- [OK] sha1 1 sha1.
- [OK] sha1 2 sha1.
- [OK] sha1 3 sha1.
- [OK] sha1 4 sha1.
- [OK] sha1 (bigstring) 0 sha1.
- [OK] sha1 (bigstring) 1 sha1.
- [OK] sha1 (bigstring) 2 sha1.
- [OK] sha1 (bigstring) 3 sha1.
- [OK] sha1 (bigstring) 4 sha1.
- [OK] sha224 0 sha224.
- [OK] sha224 1 sha224.
- [OK] sha224 2 sha224.
- [OK] sha224 3 sha224.
- [OK] sha224 4 sha224.
- [OK] sha224 (bigstring) 0 sha224.
- [OK] sha224 (bigstring) 1 sha224.
- [OK] sha224 (bigstring) 2 sha224.
- [OK] sha224 (bigstring) 3 sha224.
- [OK] sha224 (bigstring) 4 sha224.
- [OK] sha256 0 sha256.
- [OK] sha256 1 sha256.
- [OK] sha256 2 sha256.
- [OK] sha256 3 sha256.
- [OK] sha256 4 sha256.
- [OK] sha256 (bigstring) 0 sha256.
- [OK] sha256 (bigstring) 1 sha256.
- [OK] sha256 (bigstring) 2 sha256.
- [OK] sha256 (bigstring) 3 sha256.
- [OK] sha256 (bigstring) 4 sha256.
- [OK] sha384 0 sha384.
- [OK] sha384 1 sha384.
- [OK] sha384 2 sha384.
- [OK] sha384 3 sha384.
- [OK] sha384 4 sha384.
- [OK] sha384 (bigstring) 0 sha384.
- [OK] sha384 (bigstring) 1 sha384.
- [OK] sha384 (bigstring) 2 sha384.
- [OK] sha384 (bigstring) 3 sha384.
- [OK] sha384 (bigstring) 4 sha384.
- [OK] sha512 0 sha512.
- [OK] sha512 1 sha512.
- [OK] sha512 2 sha512.
- [OK] sha512 3 sha512.
- [OK] sha512 4 sha512.
- [OK] sha512 (bigstring) 0 sha512.
- [OK] sha512 (bigstring) 1 sha512.
- [OK] sha512 (bigstring) 2 sha512.
- [OK] sha512 (bigstring) 3 sha512.
- [OK] sha512 (bigstring) 4 sha512.
- [OK] sha3_224 0 sha3_224.
- [OK] sha3_224 1 sha3_224.
- [OK] sha3_224 2 sha3_224.
- [OK] sha3_224 3 sha3_224.
- [OK] sha3_224 4 sha3_224.
- [OK] sha3_224 (bigstring) 0 sha3_224.
- [OK] sha3_224 (bigstring) 1 sha3_224.
- [OK] sha3_224 (bigstring) 2 sha3_224.
- [OK] sha3_224 (bigstring) 3 sha3_224.
- [OK] sha3_224 (bigstring) 4 sha3_224.
- [OK] sha3_256 0 sha3_256.
- [OK] sha3_256 1 sha3_256.
- [OK] sha3_256 2 sha3_256.
- [OK] sha3_256 3 sha3_256.
- [OK] sha3_256 4 sha3_256.
- [OK] sha3_256 (bigstring) 0 sha3_256.
- [OK] sha3_256 (bigstring) 1 sha3_256.
- [OK] sha3_256 (bigstring) 2 sha3_256.
- [OK] sha3_256 (bigstring) 3 sha3_256.
- [OK] sha3_256 (bigstring) 4 sha3_256.
- [OK] sha3_384 0 sha3_384.
- [OK] sha3_384 1 sha3_384.
- [OK] sha3_384 2 sha3_384.
- [OK] sha3_384 3 sha3_384.
- [OK] sha3_384 4 sha3_384.
- [OK] sha3_384 (bigstring) 0 sha3_384.
- [OK] sha3_384 (bigstring) 1 sha3_384.
- [OK] sha3_384 (bigstring) 2 sha3_384.
- [OK] sha3_384 (bigstring) 3 sha3_384.
- [OK] sha3_384 (bigstring) 4 sha3_384.
- [OK] sha3_512 0 sha3_512.
- [OK] sha3_512 1 sha3_512.
- [OK] sha3_512 2 sha3_512.
- [OK] sha3_512 3 sha3_512.
- [OK] sha3_512 4 sha3_512.
- [OK] sha3_512 (bigstring) 0 sha3_512.
- [OK] sha3_512 (bigstring) 1 sha3_512.
- [OK] sha3_512 (bigstring) 2 sha3_512.
- [OK] sha3_512 (bigstring) 3 sha3_512.
- [OK] sha3_512 (bigstring) 4 sha3_512.
- [OK] whirlpool 0 whirlpool.
- [OK] whirlpool 1 whirlpool.
- [OK] whirlpool 2 whirlpool.
- [OK] whirlpool 3 whirlpool.
- [OK] whirlpool 4 whirlpool.
- [OK] whirlpool (bigstring) 0 whirlpool.
- [OK] whirlpool (bigstring) 1 whirlpool.
- [OK] whirlpool (bigstring) 2 whirlpool.
- [OK] whirlpool (bigstring) 3 whirlpool.
- [OK] whirlpool (bigstring) 4 whirlpool.
- [OK] blake2b 0 blake2b.
- [OK] blake2b 1 blake2b.
- [OK] blake2b 2 blake2b.
- [OK] blake2b 3 blake2b.
- [OK] blake2b 4 blake2b.
- [OK] blake2b (bigstring) 0 blake2b.
- [OK] blake2b (bigstring) 1 blake2b.
- [OK] blake2b (bigstring) 2 blake2b.
- [OK] blake2b (bigstring) 3 blake2b.
- [OK] blake2b (bigstring) 4 blake2b.
- [OK] rmd160 0 rmd160.
- [OK] rmd160 1 rmd160.
- [OK] rmd160 2 rmd160.
- [OK] rmd160 3 rmd160.
- [OK] rmd160 4 rmd160.
- [OK] rmd160 (bigstring) 0 rmd160.
- [OK] rmd160 (bigstring) 1 rmd160.
- [OK] rmd160 (bigstring) 2 rmd160.
- [OK] rmd160 (bigstring) 3 rmd160.
- [OK] rmd160 (bigstring) 4 rmd160.
- [OK] blake2s 0 blake2s.
- [OK] blake2s 1 blake2s.
- [OK] blake2s 2 blake2s.
- [OK] blake2s 3 blake2s.
- [OK] blake2s 4 blake2s.
- [OK] blake2s (bigstring) 0 blake2s.
- [OK] blake2s (bigstring) 1 blake2s.
- [OK] blake2s (bigstring) 2 blake2s.
- [OK] blake2s (bigstring) 3 blake2s.
- [OK] blake2s (bigstring) 4 blake2s.
- [OK] blake2s (keyed, input file) 0 blake2{b,s}.
- [OK] blake2s (keyed, input file) 1 blake2{b,s}.
- [OK] blake2s (keyed, input file) 2 blake2{b,s}.
- [OK] blake2s (keyed, input file) 3 blake2{b,s}.
- [OK] blake2s (keyed, input file) 4 blake2{b,s}.
- [OK] blake2s (keyed, input file) 5 blake2{b,s}.
- [OK] blake2s (keyed, input file) 6 blake2{b,s}.
- [OK] blake2s (keyed, input file) 7 blake2{b,s}.
- [OK] blake2s (keyed, input file) 8 blake2{b,s}.
- [OK] blake2s (keyed, input file) 9 blake2{b,s}.
- [OK] blake2s (keyed, input file) 10 blake2{b,s}.
- [OK] blake2s (keyed, input file) 11 blake2{b,s}.
- [OK] blake2s (keyed, input file) 12 blake2{b,s}.
- [OK] blake2s (keyed, input file) 13 blake2{b,s}.
- [OK] blake2s (keyed, input file) 14 blake2{b,s}.
- [OK] blake2s (keyed, input file) 15 blake2{b,s}.
- [OK] blake2s (keyed, input file) 16 blake2{b,s}.
- [OK] blake2s (keyed, input file) 17 blake2{b,s}.
- [OK] blake2s (keyed, input file) 18 blake2{b,s}.
- [OK] blake2s (keyed, input file) 19 blake2{b,s}.
- [OK] blake2s (keyed, input file) 20 blake2{b,s}.
- [OK] blake2s (keyed, input file) 21 blake2{b,s}.
- [OK] blake2s (keyed, input file) 22 blake2{b,s}.
- [OK] blake2s (keyed, input file) 23 blake2{b,s}.
- [OK] blake2s (keyed, input file) 24 blake2{b,s}.
- [OK] blake2s (keyed, input file) 25 blake2{b,s}.
- [OK] blake2s (keyed, input file) 26 blake2{b,s}.
- [OK] blake2s (keyed, input file) 27 blake2{b,s}.
- [OK] blake2s (keyed, input file) 28 blake2{b,s}.
- [OK] blake2s (keyed, input file) 29 blake2{b,s}.
- [OK] blake2s (keyed, input file) 30 blake2{b,s}.
- [OK] blake2s (keyed, input file) 31 blake2{b,s}.
- [OK] blake2s (keyed, input file) 32 blake2{b,s}.
- [OK] blake2s (keyed, input file) 33 blake2{b,s}.
- [OK] blake2s (keyed, input file) 34 blake2{b,s}.
- [OK] blake2s (keyed, input file) 35 blake2{b,s}.
- [OK] blake2s (keyed, input file) 36 blake2{b,s}.
- [OK] blake2s (keyed, input file) 37 blake2{b,s}.
- [OK] blake2s (keyed, input file) 38 blake2{b,s}.
- [OK] blake2s (keyed, input file) 39 blake2{b,s}.
- [OK] blake2s (keyed, input file) 40 blake2{b,s}.
- [OK] blake2s (keyed, input file) 41 blake2{b,s}.
- [OK] blake2s (keyed, input file) 42 blake2{b,s}.
- [OK] blake2s (keyed, input file) 43 blake2{b,s}.
- [OK] blake2s (keyed, input file) 44 blake2{b,s}.
- [OK] blake2s (keyed, input file) 45 blake2{b,s}.
- [OK] blake2s (keyed, input file) 46 blake2{b,s}.
- [OK] blake2s (keyed, input file) 47 blake2{b,s}.
- [OK] blake2s (keyed, input file) 48 blake2{b,s}.
- [OK] blake2s (keyed, input file) 49 blake2{b,s}.
- [OK] blake2s (keyed, input file) 50 blake2{b,s}.
- [OK] blake2s (keyed, input file) 51 blake2{b,s}.
- [OK] blake2s (keyed, input file) 52 blake2{b,s}.
- [OK] blake2s (keyed, input file) 53 blake2{b,s}.
- [OK] blake2s (keyed, input file) 54 blake2{b,s}.
- [OK] blake2s (keyed, input file) 55 blake2{b,s}.
- [OK] blake2s (keyed, input file) 56 blake2{b,s}.
- [OK] blake2s (keyed, input file) 57 blake2{b,s}.
- [OK] blake2s (keyed, input file) 58 blake2{b,s}.
- [OK] blake2s (keyed, input file) 59 blake2{b,s}.
- [OK] blake2s (keyed, input file) 60 blake2{b,s}.
- [OK] blake2s (keyed, input file) 61 blake2{b,s}.
- [OK] blake2s (keyed, input file) 62 blake2{b,s}.
- [OK] blake2s (keyed, input file) 63 blake2{b,s}.
- [OK] blake2s (keyed, input file) 64 blake2{b,s}.
- [OK] blake2s (keyed, input file) 65 blake2{b,s}.
- [OK] blake2s (keyed, input file) 66 blake2{b,s}.
- [OK] blake2s (keyed, input file) 67 blake2{b,s}.
- [OK] blake2s (keyed, input file) 68 blake2{b,s}.
- [OK] blake2s (keyed, input file) 69 blake2{b,s}.
- [OK] blake2s (keyed, input file) 70 blake2{b,s}.
- [OK] blake2s (keyed, input file) 71 blake2{b,s}.
- [OK] blake2s (keyed, input file) 72 blake2{b,s}.
- [OK] blake2s (keyed, input file) 73 blake2{b,s}.
- [OK] blake2s (keyed, input file) 74 blake2{b,s}.
- [OK] blake2s (keyed, input file) 75 blake2{b,s}.
- [OK] blake2s (keyed, input file) 76 blake2{b,s}.
- [OK] blake2s (keyed, input file) 77 blake2{b,s}.
- [OK] blake2s (keyed, input file) 78 blake2{b,s}.
- [OK] blake2s (keyed, input file) 79 blake2{b,s}.
- [OK] blake2s (keyed, input file) 80 blake2{b,s}.
- [OK] blake2s (keyed, input file) 81 blake2{b,s}.
- [OK] blake2s (keyed, input file) 82 blake2{b,s}.
- [OK] blake2s (keyed, input file) 83 blake2{b,s}.
- [OK] blake2s (keyed, input file) 84 blake2{b,s}.
- [OK] blake2s (keyed, input file) 85 blake2{b,s}.
- [OK] blake2s (keyed, input file) 86 blake2{b,s}.
- [OK] blake2s (keyed, input file) 87 blake2{b,s}.
- [OK] blake2s (keyed, input file) 88 blake2{b,s}.
- [OK] blake2s (keyed, input file) 89 blake2{b,s}.
- [OK] blake2s (keyed, input file) 90 blake2{b,s}.
- [OK] blake2s (keyed, input file) 91 blake2{b,s}.
- [OK] blake2s (keyed, input file) 92 blake2{b,s}.
- [OK] blake2s (keyed, input file) 93 blake2{b,s}.
- [OK] blake2s (keyed, input file) 94 blake2{b,s}.
- [OK] blake2s (keyed, input file) 95 blake2{b,s}.
- [OK] blake2s (keyed, input file) 96 blake2{b,s}.
- [OK] blake2s (keyed, input file) 97 blake2{b,s}.
- [OK] blake2s (keyed, input file) 98 blake2{b,s}.
- [OK] blake2s (keyed, input file) 99 blake2{b,s}.
- [OK] blake2s (keyed, input file) 100 blake2{b,s}.
- [OK] blake2s (keyed, input file) 101 blake2{b,s}.
- [OK] blake2s (keyed, input file) 102 blake2{b,s}.
- [OK] blake2s (keyed, input file) 103 blake2{b,s}.
- [OK] blake2s (keyed, input file) 104 blake2{b,s}.
- [OK] blake2s (keyed, input file) 105 blake2{b,s}.
- [OK] blake2s (keyed, input file) 106 blake2{b,s}.
- [OK] blake2s (keyed, input file) 107 blake2{b,s}.
- [OK] blake2s (keyed, input file) 108 blake2{b,s}.
- [OK] blake2s (keyed, input file) 109 blake2{b,s}.
- [OK] blake2s (keyed, input file) 110 blake2{b,s}.
- [OK] blake2s (keyed, input file) 111 blake2{b,s}.
- [OK] blake2s (keyed, input file) 112 blake2{b,s}.
- [OK] blake2s (keyed, input file) 113 blake2{b,s}.
- [OK] blake2s (keyed, input file) 114 blake2{b,s}.
- [OK] blake2s (keyed, input file) 115 blake2{b,s}.
- [OK] blake2s (keyed, input file) 116 blake2{b,s}.
- [OK] blake2s (keyed, input file) 117 blake2{b,s}.
- [OK] blake2s (keyed, input file) 118 blake2{b,s}.
- [OK] blake2s (keyed, input file) 119 blake2{b,s}.
- [OK] blake2s (keyed, input file) 120 blake2{b,s}.
- [OK] blake2s (keyed, input file) 121 blake2{b,s}.
- [OK] blake2s (keyed, input file) 122 blake2{b,s}.
- [OK] blake2s (keyed, input file) 123 blake2{b,s}.
- [OK] blake2s (keyed, input file) 124 blake2{b,s}.
- [OK] blake2s (keyed, input file) 125 blake2{b,s}.
- [OK] blake2s (keyed, input file) 126 blake2{b,s}.
- [OK] blake2s (keyed, input file) 127 blake2{b,s}.
- [OK] blake2s (keyed, input file) 128 blake2{b,s}.
- [OK] blake2s (keyed, input file) 129 blake2{b,s}.
- [OK] blake2s (keyed, input file) 130 blake2{b,s}.
- [OK] blake2s (keyed, input file) 131 blake2{b,s}.
- [OK] blake2s (keyed, input file) 132 blake2{b,s}.
- [OK] blake2s (keyed, input file) 133 blake2{b,s}.
- [OK] blake2s (keyed, input file) 134 blake2{b,s}.
- [OK] blake2s (keyed, input file) 135 blake2{b,s}.
- [OK] blake2s (keyed, input file) 136 blake2{b,s}.
- [OK] blake2s (keyed, input file) 137 blake2{b,s}.
- [OK] blake2s (keyed, input file) 138 blake2{b,s}.
- [OK] blake2s (keyed, input file) 139 blake2{b,s}.
- [OK] blake2s (keyed, input file) 140 blake2{b,s}.
- [OK] blake2s (keyed, input file) 141 blake2{b,s}.
- [OK] blake2s (keyed, input file) 142 blake2{b,s}.
- [OK] blake2s (keyed, input file) 143 blake2{b,s}.
- [OK] blake2s (keyed, input file) 144 blake2{b,s}.
- [OK] blake2s (keyed, input file) 145 blake2{b,s}.
- [OK] blake2s (keyed, input file) 146 blake2{b,s}.
- [OK] blake2s (keyed, input file) 147 blake2{b,s}.
- [OK] blake2s (keyed, input file) 148 blake2{b,s}.
- [OK] blake2s (keyed, input file) 149 blake2{b,s}.
- [OK] blake2s (keyed, input file) 150 blake2{b,s}.
- [OK] blake2s (keyed, input file) 151 blake2{b,s}.
- [OK] blake2s (keyed, input file) 152 blake2{b,s}.
- [OK] blake2s (keyed, input file) 153 blake2{b,s}.
- [OK] blake2s (keyed, input file) 154 blake2{b,s}.
- [OK] blake2s (keyed, input file) 155 blake2{b,s}.
- [OK] blake2s (keyed, input file) 156 blake2{b,s}.
- [OK] blake2s (keyed, input file) 157 blake2{b,s}.
- [OK] blake2s (keyed, input file) 158 blake2{b,s}.
- [OK] blake2s (keyed, input file) 159 blake2{b,s}.
- [OK] blake2s (keyed, input file) 160 blake2{b,s}.
- [OK] blake2s (keyed, input file) 161 blake2{b,s}.
- [OK] blake2s (keyed, input file) 162 blake2{b,s}.
- [OK] blake2s (keyed, input file) 163 blake2{b,s}.
- [OK] blake2s (keyed, input file) 164 blake2{b,s}.
- [OK] blake2s (keyed, input file) 165 blake2{b,s}.
- [OK] blake2s (keyed, input file) 166 blake2{b,s}.
- [OK] blake2s (keyed, input file) 167 blake2{b,s}.
- [OK] blake2s (keyed, input file) 168 blake2{b,s}.
- [OK] blake2s (keyed, input file) 169 blake2{b,s}.
- [OK] blake2s (keyed, input file) 170 blake2{b,s}.
- [OK] blake2s (keyed, input file) 171 blake2{b,s}.
- [OK] blake2s (keyed, input file) 172 blake2{b,s}.
- [OK] blake2s (keyed, input file) 173 blake2{b,s}.
- [OK] blake2s (keyed, input file) 174 blake2{b,s}.
- [OK] blake2s (keyed, input file) 175 blake2{b,s}.
- [OK] blake2s (keyed, input file) 176 blake2{b,s}.
- [OK] blake2s (keyed, input file) 177 blake2{b,s}.
- [OK] blake2s (keyed, input file) 178 blake2{b,s}.
- [OK] blake2s (keyed, input file) 179 blake2{b,s}.
- [OK] blake2s (keyed, input file) 180 blake2{b,s}.
- [OK] blake2s (keyed, input file) 181 blake2{b,s}.
- [OK] blake2s (keyed, input file) 182 blake2{b,s}.
- [OK] blake2s (keyed, input file) 183 blake2{b,s}.
- [OK] blake2s (keyed, input file) 184 blake2{b,s}.
- [OK] blake2s (keyed, input file) 185 blake2{b,s}.
- [OK] blake2s (keyed, input file) 186 blake2{b,s}.
- [OK] blake2s (keyed, input file) 187 blake2{b,s}.
- [OK] blake2s (keyed, input file) 188 blake2{b,s}.
- [OK] blake2s (keyed, input file) 189 blake2{b,s}.
- [OK] blake2s (keyed, input file) 190 blake2{b,s}.
- [OK] blake2s (keyed, input file) 191 blake2{b,s}.
- [OK] blake2s (keyed, input file) 192 blake2{b,s}.
- [OK] blake2s (keyed, input file) 193 blake2{b,s}.
- [OK] blake2s (keyed, input file) 194 blake2{b,s}.
- [OK] blake2s (keyed, input file) 195 blake2{b,s}.
- [OK] blake2s (keyed, input file) 196 blake2{b,s}.
- [OK] blake2s (keyed, input file) 197 blake2{b,s}.
- [OK] blake2s (keyed, input file) 198 blake2{b,s}.
- [OK] blake2s (keyed, input file) 199 blake2{b,s}.
- [OK] blake2s (keyed, input file) 200 blake2{b,s}.
- [OK] blake2s (keyed, input file) 201 blake2{b,s}.
- [OK] blake2s (keyed, input file) 202 blake2{b,s}.
- [OK] blake2s (keyed, input file) 203 blake2{b,s}.
- [OK] blake2s (keyed, input file) 204 blake2{b,s}.
- [OK] blake2s (keyed, input file) 205 blake2{b,s}.
- [OK] blake2s (keyed, input file) 206 blake2{b,s}.
- [OK] blake2s (keyed, input file) 207 blake2{b,s}.
- [OK] blake2s (keyed, input file) 208 blake2{b,s}.
- [OK] blake2s (keyed, input file) 209 blake2{b,s}.
- [OK] blake2s (keyed, input file) 210 blake2{b,s}.
- [OK] blake2s (keyed, input file) 211 blake2{b,s}.
- [OK] blake2s (keyed, input file) 212 blake2{b,s}.
- [OK] blake2s (keyed, input file) 213 blake2{b,s}.
- [OK] blake2s (keyed, input file) 214 blake2{b,s}.
- [OK] blake2s (keyed, input file) 215 blake2{b,s}.
- [OK] blake2s (keyed, input file) 216 blake2{b,s}.
- [OK] blake2s (keyed, input file) 217 blake2{b,s}.
- [OK] blake2s (keyed, input file) 218 blake2{b,s}.
- [OK] blake2s (keyed, input file) 219 blake2{b,s}.
- [OK] blake2s (keyed, input file) 220 blake2{b,s}.
- [OK] blake2s (keyed, input file) 221 blake2{b,s}.
- [OK] blake2s (keyed, input file) 222 blake2{b,s}.
- [OK] blake2s (keyed, input file) 223 blake2{b,s}.
- [OK] blake2s (keyed, input file) 224 blake2{b,s}.
- [OK] blake2s (keyed, input file) 225 blake2{b,s}.
- [OK] blake2s (keyed, input file) 226 blake2{b,s}.
- [OK] blake2s (keyed, input file) 227 blake2{b,s}.
- [OK] blake2s (keyed, input file) 228 blake2{b,s}.
- [OK] blake2s (keyed, input file) 229 blake2{b,s}.
- [OK] blake2s (keyed, input file) 230 blake2{b,s}.
- [OK] blake2s (keyed, input file) 231 blake2{b,s}.
- [OK] blake2s (keyed, input file) 232 blake2{b,s}.
- [OK] blake2s (keyed, input file) 233 blake2{b,s}.
- [OK] blake2s (keyed, input file) 234 blake2{b,s}.
- [OK] blake2s (keyed, input file) 235 blake2{b,s}.
- [OK] blake2s (keyed, input file) 236 blake2{b,s}.
- [OK] blake2s (keyed, input file) 237 blake2{b,s}.
- [OK] blake2s (keyed, input file) 238 blake2{b,s}.
- [OK] blake2s (keyed, input file) 239 blake2{b,s}.
- [OK] blake2s (keyed, input file) 240 blake2{b,s}.
- [OK] blake2s (keyed, input file) 241 blake2{b,s}.
- [OK] blake2s (keyed, input file) 242 blake2{b,s}.
- [OK] blake2s (keyed, input file) 243 blake2{b,s}.
- [OK] blake2s (keyed, input file) 244 blake2{b,s}.
- [OK] blake2s (keyed, input file) 245 blake2{b,s}.
- [OK] blake2s (keyed, input file) 246 blake2{b,s}.
- [OK] blake2s (keyed, input file) 247 blake2{b,s}.
- [OK] blake2s (keyed, input file) 248 blake2{b,s}.
- [OK] blake2s (keyed, input file) 249 blake2{b,s}.
- [OK] blake2s (keyed, input file) 250 blake2{b,s}.
- [OK] blake2s (keyed, input file) 251 blake2{b,s}.
- [OK] blake2s (keyed, input file) 252 blake2{b,s}.
- [OK] blake2s (keyed, input file) 253 blake2{b,s}.
- [OK] blake2s (keyed, input file) 254 blake2{b,s}.
- [OK] blake2b (keyed, input file) 0 blake2{b,s}.
- [OK] blake2b (keyed, input file) 1 blake2{b,s}.
- [OK] blake2b (keyed, input file) 2 blake2{b,s}.
- [OK] blake2b (keyed, input file) 3 blake2{b,s}.
- [OK] blake2b (keyed, input file) 4 blake2{b,s}.
- [OK] blake2b (keyed, input file) 5 blake2{b,s}.
- [OK] blake2b (keyed, input file) 6 blake2{b,s}.
- [OK] blake2b (keyed, input file) 7 blake2{b,s}.
- [OK] blake2b (keyed, input file) 8 blake2{b,s}.
- [OK] blake2b (keyed, input file) 9 blake2{b,s}.
- [OK] blake2b (keyed, input file) 10 blake2{b,s}.
- [OK] blake2b (keyed, input file) 11 blake2{b,s}.
- [OK] blake2b (keyed, input file) 12 blake2{b,s}.
- [OK] blake2b (keyed, input file) 13 blake2{b,s}.
- [OK] blake2b (keyed, input file) 14 blake2{b,s}.
- [OK] blake2b (keyed, input file) 15 blake2{b,s}.
- [OK] blake2b (keyed, input file) 16 blake2{b,s}.
- [OK] blake2b (keyed, input file) 17 blake2{b,s}.
- [OK] blake2b (keyed, input file) 18 blake2{b,s}.
- [OK] blake2b (keyed, input file) 19 blake2{b,s}.
- [OK] blake2b (keyed, input file) 20 blake2{b,s}.
- [OK] blake2b (keyed, input file) 21 blake2{b,s}.
- [OK] blake2b (keyed, input file) 22 blake2{b,s}.
- [OK] blake2b (keyed, input file) 23 blake2{b,s}.
- [OK] blake2b (keyed, input file) 24 blake2{b,s}.
- [OK] blake2b (keyed, input file) 25 blake2{b,s}.
- [OK] blake2b (keyed, input file) 26 blake2{b,s}.
- [OK] blake2b (keyed, input file) 27 blake2{b,s}.
- [OK] blake2b (keyed, input file) 28 blake2{b,s}.
- [OK] blake2b (keyed, input file) 29 blake2{b,s}.
- [OK] blake2b (keyed, input file) 30 blake2{b,s}.
- [OK] blake2b (keyed, input file) 31 blake2{b,s}.
- [OK] blake2b (keyed, input file) 32 blake2{b,s}.
- [OK] blake2b (keyed, input file) 33 blake2{b,s}.
- [OK] blake2b (keyed, input file) 34 blake2{b,s}.
- [OK] blake2b (keyed, input file) 35 blake2{b,s}.
- [OK] blake2b (keyed, input file) 36 blake2{b,s}.
- [OK] blake2b (keyed, input file) 37 blake2{b,s}.
- [OK] blake2b (keyed, input file) 38 blake2{b,s}.
- [OK] blake2b (keyed, input file) 39 blake2{b,s}.
- [OK] blake2b (keyed, input file) 40 blake2{b,s}.
- [OK] blake2b (keyed, input file) 41 blake2{b,s}.
- [OK] blake2b (keyed, input file) 42 blake2{b,s}.
- [OK] blake2b (keyed, input file) 43 blake2{b,s}.
- [OK] blake2b (keyed, input file) 44 blake2{b,s}.
- [OK] blake2b (keyed, input file) 45 blake2{b,s}.
- [OK] blake2b (keyed, input file) 46 blake2{b,s}.
- [OK] blake2b (keyed, input file) 47 blake2{b,s}.
- [OK] blake2b (keyed, input file) 48 blake2{b,s}.
- [OK] blake2b (keyed, input file) 49 blake2{b,s}.
- [OK] blake2b (keyed, input file) 50 blake2{b,s}.
- [OK] blake2b (keyed, input file) 51 blake2{b,s}.
- [OK] blake2b (keyed, input file) 52 blake2{b,s}.
- [OK] blake2b (keyed, input file) 53 blake2{b,s}.
- [OK] blake2b (keyed, input file) 54 blake2{b,s}.
- [OK] blake2b (keyed, input file) 55 blake2{b,s}.
- [OK] blake2b (keyed, input file) 56 blake2{b,s}.
- [OK] blake2b (keyed, input file) 57 blake2{b,s}.
- [OK] blake2b (keyed, input file) 58 blake2{b,s}.
- [OK] blake2b (keyed, input file) 59 blake2{b,s}.
- [OK] blake2b (keyed, input file) 60 blake2{b,s}.
- [OK] blake2b (keyed, input file) 61 blake2{b,s}.
- [OK] blake2b (keyed, input file) 62 blake2{b,s}.
- [OK] blake2b (keyed, input file) 63 blake2{b,s}.
- [OK] blake2b (keyed, input file) 64 blake2{b,s}.
- [OK] blake2b (keyed, input file) 65 blake2{b,s}.
- [OK] blake2b (keyed, input file) 66 blake2{b,s}.
- [OK] blake2b (keyed, input file) 67 blake2{b,s}.
- [OK] blake2b (keyed, input file) 68 blake2{b,s}.
- [OK] blake2b (keyed, input file) 69 blake2{b,s}.
- [OK] blake2b (keyed, input file) 70 blake2{b,s}.
- [OK] blake2b (keyed, input file) 71 blake2{b,s}.
- [OK] blake2b (keyed, input file) 72 blake2{b,s}.
- [OK] blake2b (keyed, input file) 73 blake2{b,s}.
- [OK] blake2b (keyed, input file) 74 blake2{b,s}.
- [OK] blake2b (keyed, input file) 75 blake2{b,s}.
- [OK] blake2b (keyed, input file) 76 blake2{b,s}.
- [OK] blake2b (keyed, input file) 77 blake2{b,s}.
- [OK] blake2b (keyed, input file) 78 blake2{b,s}.
- [OK] blake2b (keyed, input file) 79 blake2{b,s}.
- [OK] blake2b (keyed, input file) 80 blake2{b,s}.
- [OK] blake2b (keyed, input file) 81 blake2{b,s}.
- [OK] blake2b (keyed, input file) 82 blake2{b,s}.
- [OK] blake2b (keyed, input file) 83 blake2{b,s}.
- [OK] blake2b (keyed, input file) 84 blake2{b,s}.
- [OK] blake2b (keyed, input file) 85 blake2{b,s}.
- [OK] blake2b (keyed, input file) 86 blake2{b,s}.
- [OK] blake2b (keyed, input file) 87 blake2{b,s}.
- [OK] blake2b (keyed, input file) 88 blake2{b,s}.
- [OK] blake2b (keyed, input file) 89 blake2{b,s}.
- [OK] blake2b (keyed, input file) 90 blake2{b,s}.
- [OK] blake2b (keyed, input file) 91 blake2{b,s}.
- [OK] blake2b (keyed, input file) 92 blake2{b,s}.
- [OK] blake2b (keyed, input file) 93 blake2{b,s}.
- [OK] blake2b (keyed, input file) 94 blake2{b,s}.
- [OK] blake2b (keyed, input file) 95 blake2{b,s}.
- [OK] blake2b (keyed, input file) 96 blake2{b,s}.
- [OK] blake2b (keyed, input file) 97 blake2{b,s}.
- [OK] blake2b (keyed, input file) 98 blake2{b,s}.
- [OK] blake2b (keyed, input file) 99 blake2{b,s}.
- [OK] blake2b (keyed, input file) 100 blake2{b,s}.
- [OK] blake2b (keyed, input file) 101 blake2{b,s}.
- [OK] blake2b (keyed, input file) 102 blake2{b,s}.
- [OK] blake2b (keyed, input file) 103 blake2{b,s}.
- [OK] blake2b (keyed, input file) 104 blake2{b,s}.
- [OK] blake2b (keyed, input file) 105 blake2{b,s}.
- [OK] blake2b (keyed, input file) 106 blake2{b,s}.
- [OK] blake2b (keyed, input file) 107 blake2{b,s}.
- [OK] blake2b (keyed, input file) 108 blake2{b,s}.
- [OK] blake2b (keyed, input file) 109 blake2{b,s}.
- [OK] blake2b (keyed, input file) 110 blake2{b,s}.
- [OK] blake2b (keyed, input file) 111 blake2{b,s}.
- [OK] blake2b (keyed, input file) 112 blake2{b,s}.
- [OK] blake2b (keyed, input file) 113 blake2{b,s}.
- [OK] blake2b (keyed, input file) 114 blake2{b,s}.
- [OK] blake2b (keyed, input file) 115 blake2{b,s}.
- [OK] blake2b (keyed, input file) 116 blake2{b,s}.
- [OK] blake2b (keyed, input file) 117 blake2{b,s}.
- [OK] blake2b (keyed, input file) 118 blake2{b,s}.
- [OK] blake2b (keyed, input file) 119 blake2{b,s}.
- [OK] blake2b (keyed, input file) 120 blake2{b,s}.
- [OK] blake2b (keyed, input file) 121 blake2{b,s}.
- [OK] blake2b (keyed, input file) 122 blake2{b,s}.
- [OK] blake2b (keyed, input file) 123 blake2{b,s}.
- [OK] blake2b (keyed, input file) 124 blake2{b,s}.
- [OK] blake2b (keyed, input file) 125 blake2{b,s}.
- [OK] blake2b (keyed, input file) 126 blake2{b,s}.
- [OK] blake2b (keyed, input file) 127 blake2{b,s}.
- [OK] blake2b (keyed, input file) 128 blake2{b,s}.
- [OK] blake2b (keyed, input file) 129 blake2{b,s}.
- [OK] blake2b (keyed, input file) 130 blake2{b,s}.
- [OK] blake2b (keyed, input file) 131 blake2{b,s}.
- [OK] blake2b (keyed, input file) 132 blake2{b,s}.
- [OK] blake2b (keyed, input file) 133 blake2{b,s}.
- [OK] blake2b (keyed, input file) 134 blake2{b,s}.
- [OK] blake2b (keyed, input file) 135 blake2{b,s}.
- [OK] blake2b (keyed, input file) 136 blake2{b,s}.
- [OK] blake2b (keyed, input file) 137 blake2{b,s}.
- [OK] blake2b (keyed, input file) 138 blake2{b,s}.
- [OK] blake2b (keyed, input file) 139 blake2{b,s}.
- [OK] blake2b (keyed, input file) 140 blake2{b,s}.
- [OK] blake2b (keyed, input file) 141 blake2{b,s}.
- [OK] blake2b (keyed, input file) 142 blake2{b,s}.
- [OK] blake2b (keyed, input file) 143 blake2{b,s}.
- [OK] blake2b (keyed, input file) 144 blake2{b,s}.
- [OK] blake2b (keyed, input file) 145 blake2{b,s}.
- [OK] blake2b (keyed, input file) 146 blake2{b,s}.
- [OK] blake2b (keyed, input file) 147 blake2{b,s}.
- [OK] blake2b (keyed, input file) 148 blake2{b,s}.
- [OK] blake2b (keyed, input file) 149 blake2{b,s}.
- [OK] blake2b (keyed, input file) 150 blake2{b,s}.
- [OK] blake2b (keyed, input file) 151 blake2{b,s}.
- [OK] blake2b (keyed, input file) 152 blake2{b,s}.
- [OK] blake2b (keyed, input file) 153 blake2{b,s}.
- [OK] blake2b (keyed, input file) 154 blake2{b,s}.
- [OK] blake2b (keyed, input file) 155 blake2{b,s}.
- [OK] blake2b (keyed, input file) 156 blake2{b,s}.
- [OK] blake2b (keyed, input file) 157 blake2{b,s}.
- [OK] blake2b (keyed, input file) 158 blake2{b,s}.
- [OK] blake2b (keyed, input file) 159 blake2{b,s}.
- [OK] blake2b (keyed, input file) 160 blake2{b,s}.
- [OK] blake2b (keyed, input file) 161 blake2{b,s}.
- [OK] blake2b (keyed, input file) 162 blake2{b,s}.
- [OK] blake2b (keyed, input file) 163 blake2{b,s}.
- [OK] blake2b (keyed, input file) 164 blake2{b,s}.
- [OK] blake2b (keyed, input file) 165 blake2{b,s}.
- [OK] blake2b (keyed, input file) 166 blake2{b,s}.
- [OK] blake2b (keyed, input file) 167 blake2{b,s}.
- [OK] blake2b (keyed, input file) 168 blake2{b,s}.
- [OK] blake2b (keyed, input file) 169 blake2{b,s}.
- [OK] blake2b (keyed, input file) 170 blake2{b,s}.
- [OK] blake2b (keyed, input file) 171 blake2{b,s}.
- [OK] blake2b (keyed, input file) 172 blake2{b,s}.
- [OK] blake2b (keyed, input file) 173 blake2{b,s}.
- [OK] blake2b (keyed, input file) 174 blake2{b,s}.
- [OK] blake2b (keyed, input file) 175 blake2{b,s}.
- [OK] blake2b (keyed, input file) 176 blake2{b,s}.
- [OK] blake2b (keyed, input file) 177 blake2{b,s}.
- [OK] blake2b (keyed, input file) 178 blake2{b,s}.
- [OK] blake2b (keyed, input file) 179 blake2{b,s}.
- [OK] blake2b (keyed, input file) 180 blake2{b,s}.
- [OK] blake2b (keyed, input file) 181 blake2{b,s}.
- [OK] blake2b (keyed, input file) 182 blake2{b,s}.
- [OK] blake2b (keyed, input file) 183 blake2{b,s}.
- [OK] blake2b (keyed, input file) 184 blake2{b,s}.
- [OK] blake2b (keyed, input file) 185 blake2{b,s}.
- [OK] blake2b (keyed, input file) 186 blake2{b,s}.
- [OK] blake2b (keyed, input file) 187 blake2{b,s}.
- [OK] blake2b (keyed, input file) 188 blake2{b,s}.
- [OK] blake2b (keyed, input file) 189 blake2{b,s}.
- [OK] blake2b (keyed, input file) 190 blake2{b,s}.
- [OK] blake2b (keyed, input file) 191 blake2{b,s}.
- [OK] blake2b (keyed, input file) 192 blake2{b,s}.
- [OK] blake2b (keyed, input file) 193 blake2{b,s}.
- [OK] blake2b (keyed, input file) 194 blake2{b,s}.
- [OK] blake2b (keyed, input file) 195 blake2{b,s}.
- [OK] blake2b (keyed, input file) 196 blake2{b,s}.
- [OK] blake2b (keyed, input file) 197 blake2{b,s}.
- [OK] blake2b (keyed, input file) 198 blake2{b,s}.
- [OK] blake2b (keyed, input file) 199 blake2{b,s}.
- [OK] blake2b (keyed, input file) 200 blake2{b,s}.
- [OK] blake2b (keyed, input file) 201 blake2{b,s}.
- [OK] blake2b (keyed, input file) 202 blake2{b,s}.
- [OK] blake2b (keyed, input file) 203 blake2{b,s}.
- [OK] blake2b (keyed, input file) 204 blake2{b,s}.
- [OK] blake2b (keyed, input file) 205 blake2{b,s}.
- [OK] blake2b (keyed, input file) 206 blake2{b,s}.
- [OK] blake2b (keyed, input file) 207 blake2{b,s}.
- [OK] blake2b (keyed, input file) 208 blake2{b,s}.
- [OK] blake2b (keyed, input file) 209 blake2{b,s}.
- [OK] blake2b (keyed, input file) 210 blake2{b,s}.
- [OK] blake2b (keyed, input file) 211 blake2{b,s}.
- [OK] blake2b (keyed, input file) 212 blake2{b,s}.
- [OK] blake2b (keyed, input file) 213 blake2{b,s}.
- [OK] blake2b (keyed, input file) 214 blake2{b,s}.
- [OK] blake2b (keyed, input file) 215 blake2{b,s}.
- [OK] blake2b (keyed, input file) 216 blake2{b,s}.
- [OK] blake2b (keyed, input file) 217 blake2{b,s}.
- [OK] blake2b (keyed, input file) 218 blake2{b,s}.
- [OK] blake2b (keyed, input file) 219 blake2{b,s}.
- [OK] blake2b (keyed, input file) 220 blake2{b,s}.
- [OK] blake2b (keyed, input file) 221 blake2{b,s}.
- [OK] blake2b (keyed, input file) 222 blake2{b,s}.
- [OK] blake2b (keyed, input file) 223 blake2{b,s}.
- [OK] blake2b (keyed, input file) 224 blake2{b,s}.
- [OK] blake2b (keyed, input file) 225 blake2{b,s}.
- [OK] blake2b (keyed, input file) 226 blake2{b,s}.
- [OK] blake2b (keyed, input file) 227 blake2{b,s}.
- [OK] blake2b (keyed, input file) 228 blake2{b,s}.
- [OK] blake2b (keyed, input file) 229 blake2{b,s}.
- [OK] blake2b (keyed, input file) 230 blake2{b,s}.
- [OK] blake2b (keyed, input file) 231 blake2{b,s}.
- [OK] blake2b (keyed, input file) 232 blake2{b,s}.
- [OK] blake2b (keyed, input file) 233 blake2{b,s}.
- [OK] blake2b (keyed, input file) 234 blake2{b,s}.
- [OK] blake2b (keyed, input file) 235 blake2{b,s}.
- [OK] blake2b (keyed, input file) 236 blake2{b,s}.
- [OK] blake2b (keyed, input file) 237 blake2{b,s}.
- [OK] blake2b (keyed, input file) 238 blake2{b,s}.
- [OK] blake2b (keyed, input file) 239 blake2{b,s}.
- [OK] blake2b (keyed, input file) 240 blake2{b,s}.
- [OK] blake2b (keyed, input file) 241 blake2{b,s}.
- [OK] blake2b (keyed, input file) 242 blake2{b,s}.
- [OK] blake2b (keyed, input file) 243 blake2{b,s}.
- [OK] blake2b (keyed, input file) 244 blake2{b,s}.
- [OK] blake2b (keyed, input file) 245 blake2{b,s}.
- [OK] blake2b (keyed, input file) 246 blake2{b,s}.
- [OK] blake2b (keyed, input file) 247 blake2{b,s}.
- [OK] blake2b (keyed, input file) 248 blake2{b,s}.
- [OK] blake2b (keyed, input file) 249 blake2{b,s}.
- [OK] blake2b (keyed, input file) 250 blake2{b,s}.
- [OK] blake2b (keyed, input file) 251 blake2{b,s}.
- [OK] blake2b (keyed, input file) 252 blake2{b,s}.
- [OK] blake2b (keyed, input file) 253 blake2{b,s}.
- [OK] blake2b (keyed, input file) 254 blake2{b,s}.
- [OK] blake2s (specialization) 0 BLAKE2S (digest-size...
- [OK] blake2s (specialization) 1 BLAKE2S (digest-size...
- [OK] blake2s (specialization) 2 BLAKE2S (digest-size...
- [OK] blake2b (specialization) 0 BLAKE2B (digest-size...
- [OK] blake2b (specialization) 1 BLAKE2B (digest-size...
- [OK] blake2b (specialization) 2 BLAKE2B (digest-size...
- [OK] ripemd160 0 rmd160.
- [OK] ripemd160 1 rmd160.
- [OK] ripemd160 2 rmd160.
- [OK] ripemd160 3 rmd160.
- [OK] ripemd160 4 rmd160.
- [OK] ripemd160 5 rmd160.
- [OK] ripemd160 6 rmd160.
- [OK] ripemd160 7 rmd160.
- [OK] ripemd160 8 give me a million.
- [OK] sha3 (vector tests) 0 ../sha3_224_fips_202...
- [OK] sha3 (vector tests) 1 ../sha3_256_fips_202...
- [OK] sha3 (vector tests) 2 ../sha3_384_fips_202...
- [OK] sha3 (vector tests) 3 ../sha3_512_fips_202...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/digestif.0.9.0/_build/default/test/ocaml/_build/_tests/digestif'.
- Test Successful in 0.742s. 669 tests run.
-> compiled digestif.0.9.0
-> removed digestif.0.9.0
Processing 4/4: [digestif: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "dune" "install" "-p" "digestif" (CWD=/home/opam/.opam/5.4/.opam-switch/build/digestif.0.9.0)
Processing 4/4: [digestif: ./test/test_runes.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "./test/test_runes.ml" (CWD=/home/opam/.opam/5.4/.opam-switch/build/digestif.0.9.0)
- File "./test/test_runes.ml", line 109, characters 18-26:
- 109 | let lib = Fmt.strf "lib%s.a" library in
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
-
- File "./test/test_runes.ml", line 134, characters 15-23:
- 134 | let format = Fmt.strf "-L%%d %%(%s_linkopts)" target in
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- ocamlfind: Package `mirage-xen-posix' not found
- ocamlfind: Package `ocaml-freestanding' not found
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 03:39.13 ---> saved as "4aa182db4e9910ded015230aff057a910e545a38091482bf1e923ff49732bcab"
Job succeeded
2026-03-02 03:39.22: Job succeeded