diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-20 22:47:33 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-20 22:47:33 +0200 |
commit | c4c47f777724937746c99c064e65f52723443e59 (patch) | |
tree | c12ed23f32e394af6aa419b5f7e77badf772d431 /include/conversation.php | |
parent | e55a1a6aa8fe55d20b588f0223a15018053bfd48 (diff) | |
download | volse-hubzilla-c4c47f777724937746c99c064e65f52723443e59.tar.gz volse-hubzilla-c4c47f777724937746c99c064e65f52723443e59.tar.bz2 volse-hubzilla-c4c47f777724937746c99c064e65f52723443e59.zip |
first cut on implementing additional encryption with the SJCL library. aes only and no backward compatibility.
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index b0e81b7e2..05d1cdc26 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1396,7 +1396,7 @@ function hz_status_editor($a, $x, $popup = false) { $cipher = get_pconfig($x['profile_uid'], 'system', 'default_cipher'); if(! $cipher) - $cipher = 'aes256'; + $cipher = 'AES-256'; if(array_key_exists('catsenabled',$x)) $catsenabled = $x['catsenabled']; |