This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pwhash/tests | |
├── __init__.py | |
├── __pycache__ | |
├── test_algorithms.py | |
├── test_commoncrypto.py | |
├── test_config.py | |
├── test_hashers.py | |
├── test_openssl.py | |
├── test_packaging | |
│ ├── __init__.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while True: | |
print raw_input("Echo?") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import os | |
import random | |
import inspect | |
from functools import partial | |
from itertools import product | |
class Context(object): | |
def __init__(self): |
NewerOlder