NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
crypt.h
Go to the documentation of this file.
1
23
24
#ifndef MUTT_NCRYPT_CRYPT_H
25
#define MUTT_NCRYPT_CRYPT_H
26
27
#include <stdbool.h>
28
29
struct
Body
;
30
struct
State
;
31
32
void
crypt_convert_to_7bit
(
struct
Body
*b);
33
void
crypt_current_time
(
struct
State
*state,
const
char
*app_name);
34
const
char
*
crypt_get_fingerprint_or_id
(
const
char
*p,
const
char
**pphint,
const
char
**ppl,
const
char
**pps);
35
bool
crypt_is_numerical_keyid
(
const
char
*s);
36
int
crypt_write_signed
(
struct
Body
*b,
struct
State
*state,
const
char
*tempfile);
37
38
#endif
/* MUTT_NCRYPT_CRYPT_H */
crypt_is_numerical_keyid
bool crypt_is_numerical_keyid(const char *s)
Is this a numerical keyid.
Definition
crypt.c:1490
crypt_get_fingerprint_or_id
const char * crypt_get_fingerprint_or_id(const char *p, const char **pphint, const char **ppl, const char **pps)
Get the fingerprint or long key ID.
Definition
crypt.c:1397
crypt_write_signed
int crypt_write_signed(struct Body *b, struct State *state, const char *tempfile)
Write the message body/part.
Definition
crypt.c:765
crypt_current_time
void crypt_current_time(struct State *state, const char *app_name)
Print the current time.
Definition
crypt.c:64
crypt_convert_to_7bit
void crypt_convert_to_7bit(struct Body *b)
Convert an email to 7bit encoding.
Definition
crypt.c:815
Body
The body of an email.
Definition
body.h:36
State
Keep track when processing files.
Definition
state.h:54