libcryfs/vendor/scrypt-1.2.0/lib/crypto/crypto_scrypt_smix.h
2016-02-10 00:58:03 +01:00

15 lines
535 B
C

#ifndef _CRYPTO_SCRYPT_SMIX_H_
#define _CRYPTO_SCRYPT_SMIX_H_
/**
* crypto_scrypt_smix(B, r, N, V, XY):
* Compute B = SMix_r(B, N). The input B must be 128r bytes in length;
* the temporary storage V must be 128rN bytes in length; the temporary
* storage XY must be 256r + 64 bytes in length. The value N must be a
* power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
* multiple of 64 bytes.
*/
void crypto_scrypt_smix(uint8_t *, size_t, uint64_t, void *, void *);
#endif /* !_CRYPTO_SCRYPT_SMIX_H_ */