Sha256: 359d788a261b329a657d7f2846c1d1674ce47bd7057697aec1971b3fc447de9b

Contents?: true

Size: 1.53 KB

Versions: 7

Compression:

Stored size: 1.53 KB

Contents

/*
 * GraxRabble
 * example programs for libsodium.
 */

#include <sodium.h> /* library header */

#include "utils.h" /* utility functions shared by examples */

/*
 * Streaming variant of generic hash. This has the ability to hash
 * data in chunks at a time and compute the same result as hashing
 * all of the data at once.
 */
void
generichash_stream(void)
{
    unsigned char            key[crypto_generichash_KEYBYTES_MAX];
    unsigned char            hash[crypto_generichash_BYTES];
    unsigned char            message_part[MAX_INPUT_LEN];
    crypto_generichash_state state;
    size_t                   message_part_len;

    puts("Example: crypto_generichashstream\n");

    prompt_input("a key", (char*)key, sizeof key, 1);

    printf("Hashing message with %s\n", crypto_generichash_primitive());

    /* initialize the stream */
    if (crypto_generichash_init(&state, key, sizeof key, sizeof hash) != 0) {
        puts("Couldn't hash the message, probably due to the key length");
        exit(EXIT_FAILURE);
    }

    for(;;) {
        message_part_len = prompt_input("the next part of the message",
                                        (char*)message_part, sizeof message_part, 1);
        if (message_part_len == 0)
            break;

        /* keep appending data */
        crypto_generichash_update(&state, message_part, message_part_len);
    }
    crypto_generichash_final(&state, hash, sizeof hash);

    printf("Hash: ");
    print_hex(hash, sizeof hash);
}

int
main(void)
{
    init();
    generichash_stream();

    return 0;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rbnacl-libsodium-1.0.10 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.9 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.8 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.7 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.6 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.5 vendor/libsodium/examples/generichash_stream.c
rbnacl-libsodium-1.0.4 vendor/libsodium/examples/generichash_stream.c