mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 07:23:56 +01:00
15 lines
372 B
C
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
|