Update signature

This commit is contained in:
Omar Roth 2018-03-03 09:51:58 -06:00
parent dff93f67f9
commit 2e892e8dd4
1 changed files with 4 additions and 6 deletions

View File

@ -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