Sample code for 30+ languages & platforms
PowerShell

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$crypt = New-Object Chilkat.Crypt2

$filePath = "c:/temp/someFile.dat"

$crc32 = $crypt.CrcFile("crc-32",$filePath)
$($crc32)

$crc8 = $crypt.CrcFile("crc8",$filePath)
$($crc8)