Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Java
/ main
Method
main
src/main/java/com/thealgorithms/others/CRC32.java:12–14 ·
view source on GitHub ↗
(String[] args)
Source
from the content-addressed store, hash-verified
10
}
11
12
public
static
void
main(String[] args) {
13
System.out.println(Integer.toHexString(crc32(
"Hello World"
)));
14
}
15
16
public
static
int
crc32(String str) {
17
return
crc32(str.getBytes());
Callers
nothing calls this directly
Calls
1
crc32
Method · 0.95
Tested by
no test coverage detected