NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
crypt.h
Go to the documentation of this file.
1
24#ifndef MUTT_NCRYPT_CRYPT_H
25#define MUTT_NCRYPT_CRYPT_H
26
27#include <stdbool.h>
28
29struct Body;
30struct State;
31
32void crypt_convert_to_7bit (struct Body *b);
33void crypt_current_time (struct State *state, const char *app_name);
34const char *crypt_get_fingerprint_or_id(const char *p, const char **pphint, const char **ppl, const char **pps);
35bool crypt_is_numerical_keyid (const char *s);
36int crypt_write_signed (struct Body *b, struct State *state, const char *tempfile);
37
38#endif /* MUTT_NCRYPT_CRYPT_H */
bool crypt_is_numerical_keyid(const char *s)
Is this a numerical keyid.
Definition: crypt.c:1364
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:1275
int crypt_write_signed(struct Body *b, struct State *state, const char *tempfile)
Write the message body/part.
Definition: crypt.c:745
void crypt_current_time(struct State *state, const char *app_name)
Print the current time.
Definition: crypt.c:65
void crypt_convert_to_7bit(struct Body *b)
Convert an email to 7bit encoding.
Definition: crypt.c:795
The body of an email.
Definition: body.h:36
Keep track when processing files.
Definition: state.h:48