Update signature function

This commit is contained in:
Omar Roth 2018-03-06 16:59:23 -06:00
parent 2dae26e348
commit e9f214cdc0
1 changed files with 10 additions and 6 deletions

View File

@ -206,13 +206,17 @@ end
def decrypt_signature(a)
a = a.split("")
a.reverse!
a.delete_at(0..2)
a = splice(a, 35)
a.delete_at(0)
a.reverse!
a = splice(a, 54)
# a.reverse!
# a.delete_at(0..2)
# a = splice(a, 35)
# a.delete_at(0)
# a.reverse!
# a = splice(a, 54)
a = splice(a, 53)
a = splice(a, 47)
a.delete_at(0..2)
return a.join("")
end