Update signature function

pull/3/head
Omar Roth 2018-03-28 18:37:00 -05:00
rodzic 8d97ecaeb1
commit 3a1a2403f5
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -244,11 +244,14 @@ def decrypt_signature(a)
a = a.split("")
a.reverse!
a.delete_at(0..1)
a = splice(a, 67)
a.delete_at(0..2)
a.reverse!
a.delete_at(0..2)
a = splice(a, 38)
a.delete_at(0..0)
a = splice(a, 64)
a.reverse!
a.delete_at(0..1)
return a.join("")
end