Software /
code /
prosody
Comparison
plugins/mod_storage_xep0227.lua @ 12458:10cc52e4b310 0.12
mod_storage_xep0227: Fix conversion of SCRAM into internal format (fix #1741)
Looks like this function was a copy of hex_to_base64 without modifying
it to do its inverse.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 08 Apr 2022 15:09:19 +0200 |
parent | 12457:8b7895266e99 |
child | 12460:f7e40f1a5f53 |
comparison
equal
deleted
inserted
replaced
12457:8b7895266e99 | 12458:10cc52e4b310 |
---|---|
70 local function hex_to_base64(s) | 70 local function hex_to_base64(s) |
71 return base64.encode(hex.decode(s)); | 71 return base64.encode(hex.decode(s)); |
72 end | 72 end |
73 | 73 |
74 local function base64_to_hex(s) | 74 local function base64_to_hex(s) |
75 return base64.encode(hex.decode(s)); | 75 return hex.encode(base64.decode(s)); |
76 end | 76 end |
77 | 77 |
78 local handlers = {}; | 78 local handlers = {}; |
79 | 79 |
80 -- In order to support custom account properties | 80 -- In order to support custom account properties |