mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-16 19:40:57 +01:00
-
This commit is contained in:
35
include/pcp/base85.h
Normal file
35
include/pcp/base85.h
Normal 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
|
||||
BIN
tests/env/alicia/.pcpvault
vendored
BIN
tests/env/alicia/.pcpvault
vendored
Binary file not shown.
15
tests/env/bobby/.bash_history
vendored
15
tests/env/bobby/.bash_history
vendored
@@ -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
|
||||
BIN
tests/env/bobby/.pcpvault
vendored
BIN
tests/env/bobby/.pcpvault
vendored
Binary file not shown.
Reference in New Issue
Block a user