Sha256: 8ba09e1d7c1f28cee297f42f93969b697ab3ec0b0d37ad2b9d5cf5af855f426e

Contents?: true

Size: 673 Bytes

Versions: 5

Compression:

Stored size: 673 Bytes

Contents

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

static unsigned char bobsk[32]
    = { 0x5d, 0xab, 0x08, 0x7e, 0x62, 0x4a, 0x8a, 0x4b, 0x79, 0xe1, 0x7f,
        0x8b, 0x83, 0x80, 0x0e, 0xe6, 0x6f, 0x3b, 0xb1, 0x29, 0x26, 0x18,
        0xb6, 0xfd, 0x1c, 0x2f, 0x8b, 0x27, 0xff, 0x88, 0xe0, 0xeb };

static unsigned char bobpk[32];

int main(void)
{
    int i;

    crypto_scalarmult_base(bobpk, bobsk);

    for (i = 0; i < 32; ++i) {
        if (i > 0) {
            printf(",");
        } else {
            printf(" ");
        }
        printf("0x%02x", (unsigned int)bobpk[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/scalarmult2.c
rbnacl-libsodium-1.0.10 vendor/libsodium/test/default/scalarmult2.c
rbnacl-libsodium-1.0.9 vendor/libsodium/test/default/scalarmult2.c
rbnacl-libsodium-1.0.8 vendor/libsodium/test/default/scalarmult2.c
rbnacl-libsodium-1.0.7 vendor/libsodium/test/default/scalarmult2.c