Information is readily available about "good" CRC polynomials, for example:
https://checksumcrc.blogspot.com/2015/07/significantly-updated-crc-data.html
However, all the information I've been able to find is based on detecting errors with a relatively short "Hamming distance" - errors resulting from a few flipped bits. I'm working with a communication medium that occasionally suffers a "bit slip" - a bit is lost, shifting all subsequent bits. A single bit slip in a 1024-bit transmission can result in hundreds of errant bits, as defined by Hamming distance. Unfortunately, the recommended 32-bit CRC polynomial for transmissions as large as 1024 bits is only known to catch all errors of Hamming distance 6:
https://users.ece.cmu.edu/~koopman/crc/
If anything is known about CRC polynomials that are good at catching bit slips, I'd like to learn about it.