Sample code for 30+ languages & platforms
C++

Example: Crypt2.HashStringENC method

Demonstrates how to call the HashStringENC method.

Chilkat C++ Downloads

C++
#include <CkCrypt2.h>

void ChilkatSample(void)
    {
    CkCrypt2 crypt;

    const char *s = "får";

    //  The string "får" in utf-8 is composed of these bytes: 0x66 0xC3 0xA5 0x72
    crypt.put_Charset("utf-8");

    crypt.put_EncodingMode("hex_lower");
    crypt.put_HashAlgorithm("sha256");

    //  Get the hex string for the sha-256 hash of the utf-8 byte representation of the string
    const char *hashStr = crypt.hashStringENC(s);

    std::cout << hashStr << "\r\n";

    //  Output:
    //  cb8f773dd592337ed7f928012a60f48e1efb357beeda124a54461410e216fece
    }