mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 20:00:58 +01:00
65 lines
1.3 KiB
C
65 lines
1.3 KiB
C
|
|
#ifndef _HAVE_PCP_H
|
||
|
|
#define _HAVE_PCP_H
|
||
|
|
|
||
|
|
#define _BSD_SOURCE
|
||
|
|
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <getopt.h>
|
||
|
|
|
||
|
|
// lib
|
||
|
|
#include "mem.h"
|
||
|
|
#include "z85.h"
|
||
|
|
#include "zmq_z85.h"
|
||
|
|
#include "z85util.h"
|
||
|
|
#include "version.h"
|
||
|
|
#include "vault.h"
|
||
|
|
|
||
|
|
// subs
|
||
|
|
#include "keymgmt.h"
|
||
|
|
#include "usage.h"
|
||
|
|
#include "encryption.h"
|
||
|
|
|
||
|
|
// operation modi
|
||
|
|
// perl -e '$x=0; while ($x<100000) { $x++; $x *= 1.7; printf "0x%08X: %d\n", $x, $x }'
|
||
|
|
#define PCP_MODE_KEYGEN 0x00000001
|
||
|
|
#define PCP_MODE_LISTKEYS 0x00000004
|
||
|
|
#define PCP_MODE_EXPORT_SECRET 0x00000009
|
||
|
|
#define PCP_MODE_EXPORT_PUBLIC 0x00000011
|
||
|
|
#define PCP_MODE_IMPORT_SECRET 0x00000020
|
||
|
|
#define PCP_MODE_IMPORT_PUBLIC 0x00000038
|
||
|
|
#define PCP_MODE_DELETE_KEY 0x00000061
|
||
|
|
#define PCP_MODE_TEXT 0x000000A6
|
||
|
|
#define PCP_MODE_EDIT 0x0000011D
|
||
|
|
#define PCP_MODE_ENCRYPT 0x000001E7
|
||
|
|
#define PCP_MODE_DECRYPT 0x0000033D
|
||
|
|
#define PCP_MODE_ZENCODE 0x00000584
|
||
|
|
#define PCP_MODE_ZDECODE 0x00000962
|
||
|
|
|
||
|
|
/*
|
||
|
|
0x00000962
|
||
|
|
0x00000FF6
|
||
|
|
0x00001B25
|
||
|
|
0x00002E27
|
||
|
|
0x00004E77
|
||
|
|
0x00008566
|
||
|
|
0x0000E2CA
|
||
|
|
0x0001818C
|
||
|
|
0x00028F70
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define PCP_HELP_INTRO \
|
||
|
|
"This is Pretty Curved Privacy. Licensed under the GPLv3. This\n"\
|
||
|
|
"is BETA software. Use with care. NOT intended for production\n"\
|
||
|
|
"use.\n"
|
||
|
|
|
||
|
|
vault_t *vault;
|
||
|
|
int debug;
|
||
|
|
|
||
|
|
void version();
|
||
|
|
void usage();
|
||
|
|
char *default_vault();
|
||
|
|
|
||
|
|
#endif // _HAVE_PCP_H
|