cryptopals/tests/template.py

16 lines
207 B
Python
Raw Normal View History

2025-04-26 00:00:45 -04:00
#!/usr/bin/env python
import os, sys
module_dir = os.path.relpath('../src/cryptopals')
sys.path.insert(0, module_dir)
import helper, cryptlib
2025-04-25 20:32:42 -04:00
def main():
pass
2025-04-26 00:00:45 -04:00
2025-04-25 20:32:42 -04:00
if __name__ == '__main__':
main()