removed tarsnaps scrypt(), using libsodiums instead

This commit is contained in:
TLINDEN
2015-04-17 17:40:10 +02:00
parent 5cc0a5679f
commit 62281565d9
34 changed files with 20 additions and 3431 deletions

View File

@@ -12,10 +12,6 @@
/* Define if be32toh() is available */
#undef HAVE_BE32TOH
/* Define to 1 if you have the declaration of `be64enc', and to 0 if you
don't. */
#undef HAVE_DECL_BE64ENC
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

View File

@@ -1 +0,0 @@
../../libpcp/scrypt/crypto/crypto_scrypt.h

View File

@@ -32,7 +32,6 @@
#include <sodium.h>
#include "crypto_scrypt.h"
#include "mem.h"
#include "defines.h"
#include "context.h"

View File

@@ -25,7 +25,7 @@
#define PCP_VERSION_MAJOR 0
#define PCP_VERSION_MINOR 2
#define PCP_VERSION_PATCH 5
#define PCP_VERSION_PATCH 6
#define PCP_MAKE_VERSION(major, minor, patch) \
((major * 10000) + (minor * 100) + (patch))