UtilChecksumComputeCRC32OfString(String, Encoding) Method
Computes a CRC-32 checksum for the specified string using the specified character encoding.
Namespace: DevCase.Core.Security.DataIntegrity.ChecksumAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string ComputeCRC32OfString(
string str,
Encoding enc
)
Public Shared Function ComputeCRC32OfString (
str As String,
enc As Encoding
) As String
Dim str As String
Dim enc As Encoding
Dim returnValue As String
returnValue = UtilChecksum.ComputeCRC32OfString(str,
enc)
public:
static String^ ComputeCRC32OfString(
String^ str,
Encoding^ enc
)
static member ComputeCRC32OfString :
str : string *
enc : Encoding -> string
No code example is currently available or this language may not be supported.
- str String
-
The string.
- enc Encoding
-
The character Encoding.
String
An Hexadecimal representation of the resulting CRC-32 checksum.
This is a code example.
No code example is currently available or this language may not be supported.
Dim crc32 As String = ComputeCRC32OfString("Hello World!", Encoding.ASCII)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.