EFForg / cryptobot-email

GNU Affero General Public License v3.0
61 stars 11 forks source link

Move PGP logic of unit test into main bot.py code #9

Closed dtauerbach closed 11 years ago

dtauerbach commented 11 years ago

Right now our unit test has a test key that it uses to decrypt a test email encrypted to that key. We should make this logic more universal and implement a version of it in bot.py. One challenge is that our private key is stored in plain text for the test account, but we probably don't want to do this for the real account, so the logic for importing the key may be a bit different.

dtauerbach commented 11 years ago

Fixed.