Sha256: 37d1766fb34603a0eb32857ac8b7996e86a0f752f020f5ae9d3e951235a3eb80

Contents?: true

Size: 966 Bytes

Versions: 5

Compression:

Stored size: 966 Bytes

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

5 entries across 5 versions & 1 rubygems

Version Path
rbnacl-libsodium-1.0.11 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.10 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.9 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.8 vendor/libsodium/test/default/auth2.c
rbnacl-libsodium-1.0.7 vendor/libsodium/test/default/auth2.c