summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/helpers.cr10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/helpers.cr b/src/helpers.cr
index dd62cfc0..ca01400d 100644
--- a/src/helpers.cr
+++ b/src/helpers.cr
@@ -185,14 +185,12 @@ end
def decrypt_signature(a)
a = a.split("")
- a.delete_at(0..1)
- a = splice(a, 2)
- a = splice(a, 51)
- a = splice(a, 9)
- a.delete_at(0..1)
a.reverse!
- a = splice(a, 15)
a.delete_at(0..2)
+ a = splice(a, 35)
+ a.delete_at(0)
+ a.reverse!
+ a = splice(a, 54)
return a.join("")
end