3 lines
87 B
Groovy
3 lines
87 B
Groovy
def crc32(byte[] bytes) {
|
|
new java.util.zip.CRC32().with { update bytes; value }
|
|
}
|