NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
crypt.h File Reference

Signing/encryption multiplexor. More...

#include <stdbool.h>
+ Include dependency graph for crypt.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void crypt_convert_to_7bit (struct Body *b)
 Convert an email to 7bit encoding.
 
void crypt_current_time (struct State *state, const char *app_name)
 Print the current time.
 
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.
 
bool crypt_is_numerical_keyid (const char *s)
 Is this a numerical keyid.
 
int crypt_write_signed (struct Body *b, struct State *state, const char *tempfile)
 Write the message body/part.
 

Detailed Description

Signing/encryption multiplexor.

Authors
  • Richard Russon
  • Pietro Cerutti

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file crypt.h.

Function Documentation

◆ crypt_convert_to_7bit()

void crypt_convert_to_7bit ( struct Body b)

Convert an email to 7bit encoding.

Parameters
bBody of email to convert

Definition at line 795 of file crypt.c.

796{
797 if (!WithCrypto)
798 return;
799
800 const bool c_pgp_strict_enc = cs_subset_bool(NeoMutt->sub, "pgp_strict_enc");
801 while (b)
802 {
803 if (b->type == TYPE_MULTIPART)
804 {
805 if (b->encoding != ENC_7BIT)
806 {
807 b->encoding = ENC_7BIT;
809 }
810 else if (((WithCrypto & APPLICATION_PGP) != 0) && c_pgp_strict_enc)
811 {
813 }
814 }
815 else if ((b->type == TYPE_MESSAGE) && !mutt_istr_equal(b->subtype, "delivery-status"))
816 {
817 if (b->encoding != ENC_7BIT)
819 }
820 else if (b->encoding == ENC_8BIT)
821 {
823 }
824 else if (b->encoding == ENC_BINARY)
825 {
826 b->encoding = ENC_BASE64;
827 }
828 else if (b->content && (b->encoding != ENC_BASE64) &&
829 (b->content->from || (b->content->space && c_pgp_strict_enc)))
830 {
832 }
833 b = b->next;
834 }
835}
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:48
void crypt_convert_to_7bit(struct Body *b)
Convert an email to 7bit encoding.
Definition: crypt.c:795
@ ENC_7BIT
7-bit text
Definition: mime.h:49
@ ENC_BINARY
Binary.
Definition: mime.h:53
@ ENC_BASE64
Base-64 encoded text.
Definition: mime.h:52
@ ENC_8BIT
8-bit text
Definition: mime.h:50
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
Definition: mime.h:51
@ TYPE_MESSAGE
Type: 'message/*'.
Definition: mime.h:35
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition: mime.h:37
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition: string.c:666
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition: lib.h:90
#define WithCrypto
Definition: lib.h:116
void mutt_message_to_7bit(struct Body *b, FILE *fp, struct ConfigSubset *sub)
Convert an email's MIME parts to 7-bit.
Definition: sendlib.c:258
struct Body * parts
parts of a multipart or message/rfc822
Definition: body.h:72
struct Content * content
Detailed info about the content of the attachment.
Definition: body.h:69
struct Body * next
next attachment in the list
Definition: body.h:71
char * subtype
content-type subtype
Definition: body.h:60
unsigned int encoding
content-transfer-encoding, ContentEncoding
Definition: body.h:41
unsigned int type
content-type primary type, ContentType
Definition: body.h:40
bool space
Whitespace at the end of lines?
Definition: content.h:43
bool from
Has a line beginning with "From "?
Definition: content.h:45
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crypt_current_time()

void crypt_current_time ( struct State state,
const char *  app_name 
)

Print the current time.

Parameters
stateState to use
app_nameApp name, e.g. "PGP"

print the current time to avoid spoofing of the signature output

Definition at line 65 of file crypt.c.

66{
67 char p[256] = { 0 };
68 char tmp[512] = { 0 };
69
70 if (!WithCrypto)
71 return;
72
73 const bool c_crypt_timestamp = cs_subset_bool(NeoMutt->sub, "crypt_timestamp");
74 if (c_crypt_timestamp)
75 {
76 mutt_date_localtime_format(p, sizeof(p), _(" (current time: %c)"), mutt_date_now());
77 }
78 else
79 {
80 *p = '\0';
81 }
82
83 snprintf(tmp, sizeof(tmp), _("[-- %s output follows%s --]\n"), NONULL(app_name), p);
84 state_attach_puts(state, tmp);
85}
size_t mutt_date_localtime_format(char *buf, size_t buflen, const char *format, time_t t)
Format localtime.
Definition: date.c:950
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
Definition: date.c:455
#define _(a)
Definition: message.h:28
void state_attach_puts(struct State *state, const char *t)
Write a string to the state.
Definition: state.c:103
#define NONULL(x)
Definition: string2.h:37
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ 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.

Parameters
[in]pString to examine
[out]pphintStart of string to be passed to pgp_add_string_to_hints() or crypt_add_string_to_hints()
[out]pplStart of long key ID if detected, else NULL
[out]ppsStart of short key ID if detected, else NULL
Return values
ptrCopy of fingerprint, if any, stripped of all spaces. Must be FREE'd by caller
NULLOtherwise

Obtain pointers to fingerprint or short or long key ID, if any.

Upon return, at most one of return, *ppl and *pps pointers is non-NULL, indicating the longest fingerprint or ID found, if any.

Definition at line 1275 of file crypt.c.

1277{
1278 const char *ps = NULL, *pl = NULL, *phint = NULL;
1279 char *pfcopy = NULL, *s1 = NULL, *s2 = NULL;
1280 char c;
1281 int isid;
1282 size_t hexdigits;
1283
1284 /* User input may be partial name, fingerprint or short or long key ID,
1285 * independent of `$pgp_long_ids`.
1286 * Fingerprint without spaces is 40 hex digits (SHA-1) or 32 hex digits (MD5).
1287 * Strip leading "0x" for key ID detection and prepare pl and ps to indicate
1288 * if an ID was found and to simplify logic in the key loop's inner
1289 * condition of the caller. */
1290
1291 char *pf = mutt_str_skip_whitespace(p);
1292 if (mutt_istr_startswith(pf, "0x"))
1293 pf += 2;
1294
1295 /* Check if a fingerprint is given, must be hex digits only, blanks
1296 * separating groups of 4 hex digits are allowed. Also pre-check for ID. */
1297 isid = 2; /* unknown */
1298 hexdigits = 0;
1299 s1 = pf;
1300 do
1301 {
1302 c = *(s1++);
1303 if ((('0' <= c) && (c <= '9')) || (('A' <= c) && (c <= 'F')) ||
1304 (('a' <= c) && (c <= 'f')))
1305 {
1306 hexdigits++;
1307 if (isid == 2)
1308 isid = 1; /* it is an ID so far */
1309 }
1310 else if (c)
1311 {
1312 isid = 0; /* not an ID */
1313 if ((c == ' ') && ((hexdigits % 4) == 0))
1314 ; /* skip blank before or after 4 hex digits */
1315 else
1316 break; /* any other character or position */
1317 }
1318 } while (c);
1319
1320 /* If at end of input, check for correct fingerprint length and copy if. */
1321 pfcopy = (!c && ((hexdigits == 40) || (hexdigits == 32)) ? mutt_str_dup(pf) : NULL);
1322
1323 if (pfcopy)
1324 {
1325 /* Use pfcopy to strip all spaces from fingerprint and as hint. */
1326 s1 = pfcopy;
1327 s2 = pfcopy;
1328 do
1329 {
1330 *(s1++) = *(s2 = mutt_str_skip_whitespace(s2));
1331 } while (*(s2++));
1332
1333 phint = pfcopy;
1334 ps = NULL;
1335 pl = NULL;
1336 }
1337 else
1338 {
1339 phint = p;
1340 ps = NULL;
1341 pl = NULL;
1342 if (isid == 1)
1343 {
1344 if (mutt_str_len(pf) == 16)
1345 pl = pf; /* long key ID */
1346 else if (mutt_str_len(pf) == 8)
1347 ps = pf; /* short key ID */
1348 }
1349 }
1350
1351 *pphint = phint;
1352 *ppl = pl;
1353 *pps = ps;
1354 return pfcopy;
1355}
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:253
char * mutt_str_skip_whitespace(const char *p)
Find the first non-whitespace character in a string.
Definition: string.c:545
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
Definition: string.c:490
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
Definition: string.c:242
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crypt_is_numerical_keyid()

bool crypt_is_numerical_keyid ( const char *  s)

Is this a numerical keyid.

Parameters
sKey to test
Return values
trueKeyid is numeric

Check if a crypt-hook value is a key id.

Definition at line 1364 of file crypt.c.

1365{
1366 /* or should we require the "0x"? */
1367 if (mutt_strn_equal(s, "0x", 2))
1368 s += 2;
1369 if (strlen(s) % 8)
1370 return false;
1371 while (*s)
1372 if (!strchr("0123456789ABCDEFabcdef", *s++))
1373 return false;
1374
1375 return true;
1376}
bool mutt_strn_equal(const char *a, const char *b, size_t num)
Check for equality of two strings (to a maximum), safely.
Definition: string.c:419
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crypt_write_signed()

int crypt_write_signed ( struct Body b,
struct State state,
const char *  tempfile 
)

Write the message body/part.

Parameters
bBody to write
stateState to use
tempfileFile to write to
Return values
0Success
-1Error

Body/part A described by state state to the given TEMPFILE.

Definition at line 745 of file crypt.c.

746{
747 if (!WithCrypto)
748 return -1;
749
750 FILE *fp = mutt_file_fopen(tempfile, "w");
751 if (!fp)
752 {
753 mutt_perror("%s", tempfile);
754 return -1;
755 }
756
757 if (!mutt_file_seek(state->fp_in, b->hdr_offset, SEEK_SET))
758 {
759 mutt_file_fclose(&fp);
760 return -1;
761 }
762 size_t bytes = b->length + b->offset - b->hdr_offset;
763 bool hadcr = false;
764 while (bytes > 0)
765 {
766 const int c = fgetc(state->fp_in);
767 if (c == EOF)
768 break;
769
770 bytes--;
771
772 if (c == '\r')
773 {
774 hadcr = true;
775 }
776 else
777 {
778 if ((c == '\n') && !hadcr)
779 fputc('\r', fp);
780
781 hadcr = false;
782 }
783
784 fputc(c, fp);
785 }
786 mutt_file_fclose(&fp);
787
788 return 0;
789}
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
Definition: file.c:775
#define mutt_file_fclose(FP)
Definition: file.h:147
#define mutt_file_fopen(PATH, MODE)
Definition: file.h:146
#define mutt_perror(...)
Definition: logging2.h:93
LOFF_T offset
offset where the actual data begins
Definition: body.h:52
LOFF_T length
length (in bytes) of attachment
Definition: body.h:53
long hdr_offset
Offset in stream where the headers begin.
Definition: body.h:80
FILE * fp_in
File to read from.
Definition: state.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function: