Sha256: ca45b7a83a836fe5090b5d5e50db72e1ceb5dc790a916f40f4c07145ed1a2953

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

/* "Test Case AUTH256-4" from RFC 4868 */

#define TEST_NAME "auth2"
#include "cmptest.h"

static unsigned char key[32] = {
    0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
    0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
    0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20
};

static unsigned char c[50] = { 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd,
                               0xcd, 0xcd };

static unsigned char a[32];

int
main(void)
{
    int i;

    crypto_auth_hmacsha256(a, c, sizeof c, key);
    for (i = 0; i < 32; ++i) {
        printf(",0x%02x", (unsigned int) a[i]);
        if (i % 8 == 7)
            printf("\n");
    }
    return 0;
}

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
laag-libsodium-1.0.16.2 vendor/github.com/jedisct1/libsodium/test/default/auth2.c
laag-libsodium-1.0.16.0 vendor/github.com/jedisct1/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.16 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.15.1 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.15 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.13 vendor/libsodium/test/default/auth2.c