| SoDataCompressorCrc32 Method  | 
Utility function to get the CRC32 of a buffer. 
 
Namespace: OIV.LDM.CompressorsAssembly: OIV.LDM (in OIV.LDM.dll) Version: 2025.2.0.0 (10.18.0.0)
Syntaxpublic static ulong Crc32(
	SbNativeArray<byte> buf,
	ulong len
)
Public Shared Function Crc32 ( 
	buf As SbNativeArray(Of Byte),
	len As ULong
) As ULong
public:
static unsigned long long Crc32(
	SbNativeArray<unsigned char>^ buf, 
	unsigned long long len
)
static member Crc32 : 
        buf : SbNativeArray<byte> * 
        len : uint64 -> uint64 
Parameters
- buf
 - Type: OIV.Inventor.GenericSbNativeArrayByte
a pointer to the data. 
 - len
 - Type: SystemUInt64
the size of the buffer. 
 
Return Value
Type: 
UInt64The CRC32 of the data.  
Remarks
See Also