cryptopals/template.py

11 lines
109 B
Python
Raw Normal View History

2025-04-26 00:00:45 -04:00
#!/usr/bin/env python
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()