-
Notifications
You must be signed in to change notification settings - Fork 6
/
chainmail.py
101 lines (83 loc) · 3.72 KB
/
chainmail.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright (c) 2024, Circle Internet Financial, LTD. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import base64
import gnupg
import urllib
import yaml
import zlib
CONFIG_FILE = 'config.yaml'
CONFIG = yaml.safe_load(open(CONFIG_FILE, 'r'))
GPG = gnupg.GPG(CONFIG['pgp']['bin'])
GPG.encoding = 'utf-8'
"""
This is the main function for sending emails. It performs the following:
1. It adds a fingerprint note to the email_body.
2. Signs the new email_body.
3. Modifies the signature header to include Mailvelope version info.
4. Modifies the signature header to include a verification link.
5. Calls a (dummy) function to actually send the email using an SMTP provider.
The function returns a string with the text of the PGP signed message.
"""
def send_email(email_to, email_from, email_subject, email_body, cc_sender, fingerprint, passphrase, fingerprint_note, pgp_signature_start, new_pgp_signature_start):
fingerprint_note = fingerprint_note.replace("$FINGERPRINT", fingerprint)
content = email_body + fingerprint_note
content = PGP_sign_message(content, fingerprint, passphrase)
verification_url = get_verification_url(content)
new_pgp_signature_start = new_pgp_signature_start + '\nVerify: ' + verification_url + '\n'
content = modify_signature_header(content, pgp_signature_start, new_pgp_signature_start)
email_send_message(
email_to = email_to,
email_from = email_from,
email_subject = email_subject,
email_body = content,
cc_sender = cc_sender)
return content
# Sending an email requires connecting to an SMTP server. Users can insert custom
# code here if they want Chainmail to actually send PGP signed email messages. By default,
# Chainmail will simply display the PGP signed email on the webpage in runwebsite.py
def email_send_message(email_to, email_from, email_subject, email_body, cc_sender):
# Insert SMTP provider code here
return True
# Given a PGP signed email message content, generate a verification URL that directs the user
# to the Chainmail verification page displayed by runwebsite.py.
def get_verification_url(content):
compressed_content = zlib.compress(content.encode('utf8'))
encoded_content = base64.b64encode(compressed_content)
url_safe_content = encoded_content.decode('utf8')
base_url = CONFIG['chainmail']['hostname']
params = { 'encoded_content' : url_safe_content }
url = base_url + "/verify?" + urllib.parse.urlencode(params)
return url
def get_content_string(base64_content):
try:
decoded = base64.b64decode(base64_content)
decompressed = zlib.decompress(decoded)
content = decompressed.decode('utf-8')
except:
return "FAILED TO PARSE CONTENT"
else:
return content
def PGP_encrypt_message():
return "hello world"
def PGP_sign_message(data, fingerprint, passphrase):
print(f'Signing with fingerprint {fingerprint}')
signed_data = GPG.sign(data, keyid=fingerprint, passphrase=passphrase, clearsign=True)
return str(signed_data)
def modify_signature_header(content, old_header, new_header):
return content.replace(old_header, new_header)
def verify_signature(data):
ok = GPG.verify(data)
return ok