You can show audio checksums of files with ffmpeg like this:
for i in *.flac; do printf "$i\n"; ffmpeg -loglevel error -i "$i" -map 0:a -f hash -hash crc32 -; done
The checksum in an EAC log may or may not take into account null samples. Is it also possible to compute checksums like this without taking into account null samples?