1 package org.catacomb.util;
2
3 import java.util.zip.CRC32;
4
5
6
7 public class CRC {
8
9
10 public String getCRCString(String s) {
11 CRC32 crc = new CRC32();
12 crc.update(s.getBytes());
13 long lval = crc.getValue();
14 String sval = "" + lval;
15 return sval;
16 }
17
18 }
19
20