Update signature

This commit is contained in:
Omar Roth 2018-03-22 11:02:15 -05:00
parent 48da2ced46
commit 228008168a
1 changed files with 7 additions and 2 deletions

View File

@ -223,10 +223,15 @@ end
def decrypt_signature(a)
a = a.split("")
a = splice(a, 12)
a = splice(a, 18)
a.reverse!
a.delete_at(0)
a.delete_at(0..2)
a.reverse!
a = splice(a, 50)
a.delete_at(0..2)
a = splice(a, 69)
a.reverse!
a.delete_at(0..2)
return a.join("")
end