Checksums
From the CLI
checksum file.txt
checksum path=build.zip algorithm=SHA-256From CFML
command( 'checksum' )
.params( 'file.txt' )
.run();
command( 'checksum' )
.params( path = 'build.zip', algorithm = 'SHA-256' )
.run();Checksum all files in a directory
checksum *.cfcOutput format
Write out checksums
Verify a file against an existing checksum
Last updated
Was this helpful?