Files
exim-encrypt-dlfunc/src/common.h
2021-09-12 02:06:10 +02:00

15 lines
372 B
C

//
// Created by sprawl on 08/09/2021.
//
#ifndef EXIM_ENCRYPT_DLFUNC_COMMON_H
#define EXIM_ENCRYPT_DLFUNC_COMMON_H
char *read_first_line(const char *filename);
char *read_password_file(const char *filename, size_t keysize, size_t *length);
int base64_decode_string(const char *input, unsigned char **outstring, size_t *outlen);
#endif //EXIM_ENCRYPT_DLFUNC_COMMON_H