-rw-r--r-- 158 libsecded-20220828/decode.py raw
from parity import parity from correct import correct from shrink import shrink def decode(x): sec,ded,x = correct(x,parity(x)) return sec,ded,shrink(x)