Blame cbits/cryptonite_scrypt.c

Packit 141393
/*
Packit 141393
 * Copyright (C) 2014 Vincent Hanquez <vincent@snarc.org>
Packit 141393
 *
Packit 141393
 * Redistribution and use in source and binary forms, with or without
Packit 141393
 * modification, are permitted provided that the following conditions
Packit 141393
 * are met:
Packit 141393
 * 1. Redistributions of source code must retain the above copyright
Packit 141393
 *    notice, this list of conditions and the following disclaimer.
Packit 141393
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 141393
 *    notice, this list of conditions and the following disclaimer in the
Packit 141393
 *    documentation and/or other materials provided with the distribution.
Packit 141393
 *
Packit 141393
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
Packit 141393
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Packit 141393
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Packit 141393
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit 141393
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
Packit 141393
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 141393
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 141393
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 141393
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
Packit 141393
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 141393
 *
Packit 141393
 * Based on scrypt from Colin Percival's paper
Packit 141393
 */
Packit 141393
Packit 141393
#include <stdint.h>
Packit 141393
#include <string.h>
Packit 141393
#include "cryptonite_bitfn.h"
Packit 141393
#include "cryptonite_align.h"
Packit 141393
#include "cryptonite_salsa.h"
Packit 141393
Packit 141393
static void blockmix_salsa8(uint32_t *in, uint32_t *out, uint32_t *X, const uint32_t r)
Packit 141393
{
Packit 141393
	int i;
Packit 141393
Packit 141393
	array_copy32(X, &in[(2 * r - 1) * 16], 16);
Packit 141393
Packit 141393
	for (i = 0; i < 2 * r; i += 2) {
Packit 141393
		cryptonite_salsa_core_xor(8, (block *) X, (block *) &in[i*16]);
Packit 141393
		array_copy32(&out[i * 8], X, 16);
Packit 141393
Packit 141393
		cryptonite_salsa_core_xor(8, (block *) X, (block *) &in[i*16+16]);
Packit 141393
		array_copy32(&out[i * 8 + r * 16], X, 16);
Packit 141393
	}
Packit 141393
}
Packit 141393
Packit 141393
static inline uint64_t integerify(uint32_t *B, const uint32_t r)
Packit 141393
{
Packit 141393
	return B[(2*r-1) * 16] | (uint64_t)B[(2*r-1) * 16 + 1] << 32;
Packit 141393
}
Packit 141393
Packit 141393
void cryptonite_scrypt_smix(uint8_t *B, const uint32_t r, const uint64_t N, uint32_t *V, uint32_t *XY)
Packit 141393
{
Packit 141393
	uint32_t *X = XY;
Packit 141393
	uint32_t *Y = &XY[32 * r];
Packit 141393
	uint32_t *Z = &XY[64 * r];
Packit 141393
	uint64_t i, j;
Packit 141393
	int k;
Packit 141393
	const int r32 = 32*r;
Packit 141393
Packit 141393
	for (k = 0; k < r32; k++)
Packit 141393
		X[k] = load_le32_aligned(&B[4 * k]);
Packit 141393
	for (i = 0; i < N; i += 2) {
Packit 141393
		array_copy32(&V[i * r32], X, r32);
Packit 141393
		blockmix_salsa8(X, Y, Z, r);
Packit 141393
		array_copy32(&V[(i + 1) * r32], Y, r32);
Packit 141393
		blockmix_salsa8(Y, X, Z, r);
Packit 141393
	}
Packit 141393
	for (i = 0; i < N; i += 2) {
Packit 141393
		j = integerify(X, r) & (N - 1);
Packit 141393
		array_xor32(X, &V[j * r32], r32);
Packit 141393
		blockmix_salsa8(X, Y, Z, r);
Packit 141393
Packit 141393
		j = integerify(Y, r) & (N - 1);
Packit 141393
		array_xor32(Y, &V[j * r32], r32);
Packit 141393
		blockmix_salsa8(Y, X, Z, r);
Packit 141393
	}
Packit 141393
	for (k = 0; k < r32; k++)
Packit 141393
		store_le32_aligned(&B[4*k], X[k]);
Packit 141393
}