# shellcheck shell=dash

# SHA-256 / SHA-512 checksum verification and hashing
# Delegates to ___x_cmd hash module

___x_cmd_eget_verify(){
    ___x_cmd hash verify "$1" "$2"
}

___x_cmd_eget_hash(){
    local algo="sha$1"; shift
    ___x_cmd hash "$algo" "$@"
}
