Update signature

This commit is contained in:
Omar Roth 2018-05-18 19:25:22 -05:00
parent c6539c803a
commit 609ad873bc

View File

@ -294,14 +294,12 @@ end
def decrypt_signature(a)
a = a.split("")
a.reverse!
a = splice(a, 51)
a = splice(a, 50)
a.delete_at(0..1)
a.reverse!
a = splice(a, 24)
a.delete_at(0..2)
a = splice(a, 70)
a.reverse!
return a.join("")
end