-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcle
47 lines (34 loc) · 1.42 KB
/
cle
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
#!/home/dd/anaconda3/bin/python
"""cle (GnuPG) clipboard encryption (github.com/taext/cle)"""
######################################################
# #
# cle v3.0 (October 2020) #
# #
# What's New: Add error message bug fix #
# #
# #
######################################################
import gnupg
import sys
import clipboard
import gnupg._parsers
# monkey patch from https://github.com/isislovecruft/python-gnupg/issues/207
gnupg._parsers.Verify.TRUST_LEVELS["ENCRYPTION_COMPLIANCE_MODE"] = 23
def main(clear_text,
pubkey_file_name='pubkey.asc',
pubkey_file_path='/path/to/pubkey/'):
"""Takes cleartext string, optionally pubkey file name
and file path, returns PGP-encrypted string."""
gpg = gnupg.GPG()
key_data = open(pubkey_file_path + pubkey_file_name).read()
import_result = gpg.import_keys(key_data)
fingerprint = import_result.results[0]['fingerprint']
encr_data = gpg.encrypt(clear_text, fingerprint)
result = str(encr_data)
return result
if __name__ == '__main__':
args = clipboard.paste()
result = main(args)
clipboard.copy(result)
#print(f"result: {result}")
#print(f"clipboard: {clipboard.paste()}")