aboutsummaryrefslogtreecommitdiffstats
path: root/encpipe_p.h
blob: 3e8e474b28486a280e70b4ecad7d2ec8b17a4b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef encpipe_p_H
#define encpipe_p_H 1

#include <stdlib.h>
#include <sys/types.h>
#include <sys/uio.h>

#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include <hydrogen.h>

#include "common.h"
#include "safe_rw.h"

#define MIN_BUFFER_SIZE 512
#define MAX_BUFFER_SIZE 0x7fffffff
#define DEFAULT_BUFFER_SIZE (1 * 1024 * 1024)
#define HYDRO_CONTEXT "EncPipe"
#define PWHASH_OPSLIMIT 1000000
#define PWHASH_MEMLIMIT 0
#define PWHASH_THREADS 1

typedef struct Context_ {
    char *         in;
    char *         out;
    char *         password;
    unsigned char  key[hydro_secretbox_KEYBYTES];
    unsigned char *buf;
    size_t         sizeof_buf;
    int            fd_in;
    int            fd_out;
    int            encrypt;
} Context;

#endif