This commit is contained in:
git@daemon.de
2014-01-30 14:35:31 +01:00
parent bf0e592a03
commit 369398eea9
4 changed files with 35 additions and 15 deletions

35
include/pcp/base85.h Normal file
View File

@@ -0,0 +1,35 @@
/*
Source from GIT
Licensed under the terms of the LGPL 2.1.
*/
#ifndef HAVE_BASE85_H
#define HAVE_BASE85_H
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "defines.h"
#undef DEBUG_85
#ifdef DEBUG_85
#define say(a) fprintf(stderr, a)
#define say1(a,b) fprintf(stderr, a, b)
#define say2(a,b,c) fprintf(stderr, a, b, c)
#else
#define say(a) do { /* nothing */ } while (0)
#define say1(a,b) do { /* nothing */ } while (0)
#define say2(a,b,c) do { /* nothing */ } while (0)
#endif
int decode_85(char *dst, const char *buffer, int len);
void encode_85(char *buf, const unsigned char *data, int bytes);
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
#define error(...) (fatal(__VA_ARGS__), -1)
#endif // HAVE_BASE85_H

Binary file not shown.

View File

@@ -1,15 +0,0 @@
pcp -l
pcp -k
l
l
l
l
cd share
l
l
rm x
pcp -p -R Alicia
pcp -p -R Alicia > bobby.pub
pcp -P -I alicia.pub
pcp -l
pcp -d -I encrypted

Binary file not shown.