mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-18 04:10:57 +01:00
added context to pcp_readpass(), rm libpcp/getpass.c
This commit is contained in:
@@ -2,7 +2,6 @@ PCPEXPORT = pcp.h \
|
||||
pcp/crypto.h \
|
||||
pcp/config.h \
|
||||
pcp/defines.h \
|
||||
pcp/getpass.h \
|
||||
pcp/jenhash.h \
|
||||
pcp/key.h \
|
||||
pcp/keyhash.h \
|
||||
@@ -22,7 +21,7 @@ PCPEXPORT = pcp.h \
|
||||
pcp/context.h \
|
||||
pcp/structs.h \
|
||||
pcp/util.h \
|
||||
pcp/plist.h \
|
||||
pcp/readpass.h \
|
||||
pcp/scrypt.h
|
||||
|
||||
nobase_include_HEADERS = $(PCPEXPORT)
|
||||
|
||||
@@ -11,7 +11,6 @@ extern "C" {
|
||||
#include "pcp/crypto.h"
|
||||
#include "pcp/defines.h"
|
||||
#include "pcp/ed.h"
|
||||
#include "pcp/getpass.h"
|
||||
#include "pcp/jenhash.h"
|
||||
#include "pcp/key.h"
|
||||
#include "pcp/keyhash.h"
|
||||
@@ -22,6 +21,7 @@ extern "C" {
|
||||
#include "pcp/platform.h"
|
||||
#include "pcp/plist.h"
|
||||
#include "pcp/randomart.h"
|
||||
#include "pcp/readpass.h"
|
||||
#include "pcp/scrypt.h"
|
||||
#include "pcp/structs.h"
|
||||
#include "pcp/uthash.h"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#define PCP_VERSION_MAJOR 0
|
||||
#define PCP_VERSION_MINOR 3
|
||||
#define PCP_VERSION_PATCH 0
|
||||
#define PCP_VERSION_PATCH 1
|
||||
|
||||
#define PCP_VERSION PCP_MAKE_VERSION(PCP_VERSION_MAJOR, PCP_VERSION_MINOR, PCP_VERSION_PATCH)
|
||||
#define PCP_MAKE_VERSION(major, minor, patch) ((major * 10000) + (minor * 100) + (patch))
|
||||
|
||||
Reference in New Issue
Block a user