7 lines
129 B
Python
7 lines
129 B
Python
|
import unittest
|
||
|
|
||
|
from .hashes import SHA256
|
||
|
from .hashes import SHA512
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main(verbosity=2)
|