2014-06-01 14:58:20 -04:00
|
|
|
#include <stdio.h>
|
2014-06-04 02:22:38 -04:00
|
|
|
#include <stdint.h>
|
2014-06-01 14:58:20 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define TEST_NAME "pwhash_scrypt_ll"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
|
|
|
/* Tarsnap test vectors, see: https://www.tarsnap.com/scrypt/scrypt.pdf */
|
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
static const char *password1 = "";
|
|
|
|
static const char *salt1 = "";
|
|
|
|
static uint64_t N1 = 16U;
|
|
|
|
static uint32_t r1 = 1U;
|
|
|
|
static uint32_t p1 = 1U;
|
2014-06-01 14:58:20 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
static const char *password2 = "password";
|
|
|
|
static const char *salt2 = "NaCl";
|
|
|
|
static uint64_t N2 = 1024U;
|
|
|
|
static uint32_t r2 = 8U;
|
|
|
|
static uint32_t p2 = 16U;
|
2014-06-01 14:58:20 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
static const char *password3 = "pleaseletmein";
|
|
|
|
static const char *salt3 = "SodiumChloride";
|
|
|
|
static uint64_t N3 = 16384U;
|
|
|
|
static uint32_t r3 = 8U;
|
|
|
|
static uint32_t p3 = 1U;
|
2014-06-01 14:58:20 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
static const char *password4 = "pleaseletmein";
|
|
|
|
static const char *salt4 = "SodiumChloride";
|
|
|
|
static uint64_t N4 = 1048576U;
|
|
|
|
static uint32_t r4 = 8U;
|
|
|
|
static uint32_t p4 = 1U;
|
2014-06-01 14:58:20 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
static void test_vector(const char *password, const char *salt,
|
|
|
|
uint64_t N, uint32_t r, uint32_t p)
|
2014-06-01 14:58:20 -04:00
|
|
|
{
|
2014-06-03 06:15:39 -04:00
|
|
|
uint8_t data[64];
|
2014-06-04 02:48:25 -04:00
|
|
|
size_t i;
|
|
|
|
size_t olen = (sizeof data / sizeof data[0]);
|
|
|
|
size_t passwordLength = strlen(password);
|
|
|
|
size_t saltLenght = strlen(salt);
|
|
|
|
int lineitems = 0;
|
|
|
|
int lineitemsLimit = 15;
|
2014-06-03 06:15:39 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
if (crypto_pwhash_scryptsalsa208sha256_ll((const uint8_t *) password,
|
|
|
|
passwordLength,
|
|
|
|
(const uint8_t *) salt,
|
|
|
|
saltLenght,
|
|
|
|
N, r, p, data, olen) != 0) {
|
|
|
|
printf("pwhash_scryptsalsa208sha256_ll([%s],[%s]) failure\n",
|
|
|
|
password, salt);
|
|
|
|
return;
|
2014-06-03 06:15:39 -04:00
|
|
|
}
|
2014-06-04 02:48:25 -04:00
|
|
|
|
|
|
|
printf("scrypt('%s', '%s', %llu, %lu, %lu, %lu) =\n",
|
|
|
|
password, salt,
|
2014-06-04 02:22:38 -04:00
|
|
|
(unsigned long long) N, (unsigned long) r, (unsigned long) p,
|
|
|
|
(unsigned long) olen);
|
2014-06-01 14:58:20 -04:00
|
|
|
|
2014-06-04 02:48:25 -04:00
|
|
|
for (i = 0; i < olen; ++i) {
|
|
|
|
printf("%02x%c", data[i], lineitems < lineitemsLimit ? ' ' : '\n');
|
|
|
|
lineitems = lineitems < lineitemsLimit ? lineitems + 1 : 0;
|
2014-06-01 14:58:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2014-06-03 06:15:39 -04:00
|
|
|
test_vector(password1, salt1, N1, r1, p1);
|
|
|
|
test_vector(password2, salt2, N2, r2, p2);
|
|
|
|
test_vector(password3, salt3, N3, r3, p3);
|
|
|
|
test_vector(password4, salt4, N4, r4, p4);
|
2014-06-01 14:58:20 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|