diff options
author | Mario <mario@mariovavti.com> | 2024-03-10 22:35:59 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-03-10 22:35:59 +0000 |
commit | ee8aba3221f995b265c3196505a1c7c26b76f116 (patch) | |
tree | 2b32c6153b40da13d7ebd944fe8e7fd383785f32 /view/tpl/chat.tpl | |
parent | 0a730935f52ae33bf6132a1ae522e88a37b0f5e6 (diff) | |
download | volse-hubzilla-ee8aba3221f995b265c3196505a1c7c26b76f116.tar.gz volse-hubzilla-ee8aba3221f995b265c3196505a1c7c26b76f116.tar.bz2 volse-hubzilla-ee8aba3221f995b265c3196505a1c7c26b76f116.zip |
implement sodium-plus library to replace unmaintained sjcl
Diffstat (limited to 'view/tpl/chat.tpl')
-rw-r--r-- | view/tpl/chat.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl index da8da30f2..a0e528894 100644 --- a/view/tpl/chat.tpl +++ b/view/tpl/chat.tpl @@ -70,7 +70,7 @@ </div> {{if $feature_encrypt}} <div class="btn-group me-2 d-none d-md-flex"> - <button id="chat-encrypt-wrapper" class="btn btn-outline-secondary btn-sm" onclick="hz_encrypt('{{$cipher}}', '#chatText'); return false;"> + <button id="chat-encrypt-wrapper" class="btn btn-outline-secondary btn-sm" onclick="sodium_encrypt('#chatText'); return false;"> <i id="chat-encrypt" class="fa fa-key jot-icons" title="{{$encrypt}}" ></i> </button> </div> @@ -83,7 +83,7 @@ <a class="dropdown-item" href="#" onclick="chatJotGetLink(); return false;" ><i class="fa fa-link"></i> {{$insert}}</a> {{if $feature_encrypt}} <div class="dropdown-divider"></div> - <a class="dropdown-item" href="#" onclick="hz_encrypt('{{$cipher}}', '#chatText'); return false;"><i class="fa fa-key"></i> {{$encrypt}}</a> + <a class="dropdown-item" href="#" onclick="sodium_encrypt('#chatText'); return false;"><i class="fa fa-key"></i> {{$encrypt}}</a> {{/if}} </div> </div> |