Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. /**
  2. * Generates a checksum for a file.
  3. */
  4. fun File.checksum() : Long? {
  5. val crc = CRC32()
  6. crc.update(readBytes())
  7. return crc.value
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement