Browse Source Download (without any required ccan dependencies)

Module:

crypto/sha512

Summary:

implementation of SHA-2 with 512 bit digest.

Maintainer:

Rusty Russell <[email protected]>

Dependencies:

Description:

This code is either a wrapper for openssl (if CCAN_CRYPTO_SHA512_USE_OPENSSL is defined) or an open-coded implementation based on Bitcoin's.

Example:

#include <ccan/crypto/sha512/sha512.h>
#include <err.h>
#include <stdio.h>
#include <string.h>

// Simple demonstration: identical strings will have the same hash, but
// two different strings will not.
int main(int argc, char *argv[])
{
        struct sha512 hash1, hash2;

        if (argc != 3)
                errx(1, "Usage: %s <string1> <string2>", argv[0]);

        sha512(&hash1, argv[1], strlen(argv[1]));
        sha512(&hash2, argv[2], strlen(argv[2]));
        printf("Hash is %s\n", memcmp(&hash1, &hash2, sizeof(hash1))
                ? "different" : "same");
        return 0;
}

License:

BSD-MIT