Update signature

This commit is contained in:
Omar Roth 2018-06-29 10:24:45 -05:00
parent fdf92ddc03
commit a15c523e1d

View File

@ -298,15 +298,11 @@ end
def decrypt_signature(a)
a = a.split("")
a = splice(a, 3)
a = splice(a, 28)
a.delete_at(0..0)
a = splice(a, 14)
a = splice(a, 58)
a.reverse!
a.delete_at(0..2)
a = splice(a, 38)
a.reverse!
a = splice(a, 14)
a = splice(a, 23)
a = splice(a, 22)
return a.join("")
end