view shasum.py @ 120:a548783381b6

More accurate description of --algorithm. While their: alias "3" to "3-512" (sha3-512).
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 29 Dec 2024 18:46:23 +0100
parents dd4fe912d7e9
children 1e5127028254
line wrap: on
line source

# -*- coding: utf-8 -*-
# :-
# :Copyright: (c) 2020-2024 Franz Glasner
# :License:   BSD-3-Clause
# :-
r"""Pure Python implementation of `shasum`.

"""

from __future__ import absolute_import

import sys

import cutils.shasum


sys.exit(cutils.shasum.main())