Update signature

This commit is contained in:
Omar Roth 2018-07-13 08:50:32 -05:00
parent f7fad7fe85
commit c56a945533

View File

@ -300,12 +300,11 @@ end
def decrypt_signature(a)
a = a.split("")
a = splice(a, 24)
a.reverse!
a.delete_at(0..2)
a = splice(a, 23)
a = splice(a, 44)
a = splice(a, 51)
a.reverse!
a.delete_at(0..2)
a = splice(a, 60)
return a.join("")
end