mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-05 00:34:10 +08:00
Revert "Add a function for getting a quick hash/checksum"
This reverts commit 6858abac044746f4195515b3c1ed65ba8c2f0307. This was unintentional
This commit is contained in:
parent
fefb913857
commit
d3678c46f2
@ -1,10 +0,0 @@
|
|||||||
function fish_fletcher16 --argument input -d "compute a fletcher 16 checksum"
|
|
||||||
set -l sum1 0
|
|
||||||
set -l sum2 0
|
|
||||||
for char in (string split '' $input)
|
|
||||||
set -l ordinal (printf %2u "'$char")
|
|
||||||
math "($sum1 + $ordinal)" % 255 | read sum1
|
|
||||||
math "($sum2 + $sum1)" % 255 | read sum2
|
|
||||||
end
|
|
||||||
math "bitor $sum1,$(math $sum2 '*' pow 2,8)"
|
|
||||||
end
|
|
Loading…
x
Reference in New Issue
Block a user