Import scrypt-1.1.6.tgz with SHA-256

dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8
This commit is contained in:
Chris Oei 2012-09-02 11:29:39 -07:00
parent b490e825f3
commit 1acdffde66
30 changed files with 13307 additions and 0 deletions

12
scrypt_platform.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef _SCRYPT_PLATFORM_H_
#define _SCRYPT_PLATFORM_H_
#if defined(CONFIG_H_FILE)
#include CONFIG_H_FILE
#elif defined(HAVE_CONFIG_H)
#include "config.h"
#else
#error Need either CONFIG_H_FILE or HAVE_CONFIG_H defined.
#endif
#endif /* !_SCRYPT_PLATFORM_H_ */