mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
19 lines
409 B
C
19 lines
409 B
C
|
|
#ifndef _HAVE_ENCRYPTION_H
|
||
|
|
#define _HAVE_ENCRYPTION_H
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
#include "defines.h"
|
||
|
|
#include "key.h"
|
||
|
|
#include "crypto.h"
|
||
|
|
#include "pcp.h"
|
||
|
|
#include "uthash.h"
|
||
|
|
#include "z85.h"
|
||
|
|
#include "keyprint.h"
|
||
|
|
|
||
|
|
int pcpdecrypt(char *id, int useid, char *infile, char *outfile, char *passwd);
|
||
|
|
int pcpencrypt(char *id, char *infile, char *outfile, char *passwd);
|
||
|
|
|
||
|
|
#endif // _HAVE_ENCRYPTION_H
|