mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 18:56:23 +00:00
10 lines
194 B
Python
10 lines
194 B
Python
#!/usr/bin/env python
|
|
|
|
from MyCypher import MyCypher
|
|
|
|
encstr = bytes('drEN/LqPBu1wJYHpN5eCjZXqVgvDEP3rZnXJt85Ma0k=', 'utf-8')
|
|
|
|
cypher = MyCypher(iv = str('asdf'))
|
|
print(cypher.decrypt(encstr))
|
|
|