Home
last modified time | relevance | path

Searched refs:algo (Results 1 – 3 of 3) sorted by relevance

/coreutils/tests/cksum/
Dcksum-a.sh35 while read algo prog mode; do
41 cksum --untagged $cmode --algorithm=$algo /dev/null > out-c || fail=1
43 case "$algo" in
47 *) cksum --check --algorithm=$algo out-c || fail=1 ;;
Dcksum-raw.sh38 while read algo type; do
40 cksum --raw --algorithm $algo file.in > digest.bin || fail=1
45 case $algo in bsd) n=$(cat "$d"); printf '%05d\n' "$n" > "$d" ;; esac
48 cksum --untagged --algorithm $algo < file.in | cut -d ' ' -f1 \
/coreutils/src/
Ddigest.c751 ptrdiff_t algo = argmatch_exact (s, algorithm_tags); in algorithm_from_tag() local
754 return algo; in algorithm_from_tag()