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

@@ -25,7 +25,6 @@ PCPEXPORT = pcp.h \
pcp/structs.h \
pcp/util.h \
pcp/plist.h \
pcp/scrypt.h \
pcp/crypto_scrypt.h
pcp/scrypt.h
nobase_include_HEADERS = $(PCPEXPORT)

View File

@@ -10,7 +10,6 @@ extern "C" {
#include "pcp/buffer.h"
#include "pcp/context.h"
#include "pcp/crypto.h"
#include "pcp/crypto_scrypt.h"
#include "pcp/defines.h"
#include "pcp/digital_crc32.h"
#include "pcp/ed.h"

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))