Skip to content

Commit 98f024a

Browse files
Nicolai Lissnerflashcode
authored andcommitted
crypt.py 1.4.4: revert to blowfish (bf-cbc) as default algorithm
1 parent 99f62df commit 98f024a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/crypt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ===============================================================
44
SCRIPT_NAME = "crypt"
55
SCRIPT_AUTHOR = "Nicolai Lissner <[email protected]>"
6-
SCRIPT_VERSION = "1.4.3"
6+
SCRIPT_VERSION = "1.4.4"
77
SCRIPT_LICENSE = "GPL3"
88
SCRIPT_DESC = "encrypt/decrypt PRIVMSGs using a pre-shared key and openssl"
99

@@ -44,7 +44,7 @@
4444
script_options = {
4545
"message_indicator" : "(enc) ",
4646
"statusbar_indicator" : "(encrypted) ",
47-
"cipher" : "aes-256-cbc",
47+
"cipher" : "blowfish",
4848
}
4949

5050
def decrypt(data, msgtype, servername, args):

0 commit comments

Comments
 (0)