summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/helpers.cr15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/helpers.cr b/src/helpers.cr
index 6ecd1e04..7aefe615 100644
--- a/src/helpers.cr
+++ b/src/helpers.cr
@@ -206,16 +206,13 @@ end
def decrypt_signature(a)
a = a.split("")
- # a.reverse!
- # a.delete_at(0..2)
- # a = splice(a, 35)
- # a.delete_at(0)
- # a.reverse!
- # a = splice(a, 54)
-
- a = splice(a, 53)
- a = splice(a, 47)
+ a.reverse!
+ a = splice(a, 23)
a.delete_at(0..2)
+ a.reverse!
+ a = splice(a, 45)
+ a.reverse!
+ a = splice(a, 66)
return a.join("")
end