zsh_root
2025-12-10 8d662de2fd262b3a485f16e197cb4d0ca2a61cdf
1
2
3
4
5
6
7
8
9
10
package Ymodem;
 
/**
 * Created by asirotinkin on 11.11.2014.
 */
public interface CRC {
    int getCRCLength();
 
    long calcCRC(byte[] block);
}