**Description:** Reference: https://docs.google.com/presentation/d/1Qct7UxwvBhyKCxd5ea97v5wHBfEuC2JSLGO9t8aCb8Y/edit?usp=sharing PyCrypto https://secretpack.tistory.com/109 Add message encryption module. **Acceptance Criteria:** ` def __init__(self): pass def encrypt(private_key): pass def decrypt(public_key): pass def generate_key(): pass def generate_public_key(private_key): pass `
Description:
Reference:
https://docs.google.com/presentation/d/1Qct7UxwvBhyKCxd5ea97v5wHBfEuC2JSLGO9t8aCb8Y/edit?usp=sharing
PyCrypto
https://secretpack.tistory.com/109
Add message encryption module.
Acceptance Criteria:
`
def init(self):
pass
`