/bin/bin/getpw.py

https://github.com/mfussenegger/dotfiles · Python · 39 lines · 24 code · 11 blank · 4 comment · 3 complexity · 3edeebe059dea5ead8af40cb186f06dc MD5 · raw file

  1. #!/usr/bin/env python2
  2. # -*- coding: utf-8 -*-
  3. """cli to generate passwords from a master password """
  4. import sys
  5. from Crypto.Cipher import Blowfish
  6. from argh import ArghParser, command
  7. from getpass import getpass
  8. from base64 import encodestring
  9. @command
  10. def getpw(name):
  11. try:
  12. password = getpass()
  13. except KeyboardInterrupt:
  14. sys.exit()
  15. encrypter = Blowfish.new(password)
  16. name = _ensure_multiple8(name)
  17. pw = encodestring(encrypter.encrypt(name)).strip('\n')
  18. return pw
  19. def _ensure_multiple8(name):
  20. """Add filler chars to make sure the len of name is a multiple of 8"""
  21. nchars = 8 - len(name) % 8
  22. return 2 * (name + nchars * 'X')
  23. def main():
  24. p = ArghParser()
  25. p.set_default_command(getpw)
  26. p.dispatch()
  27. if __name__ == '__main__':
  28. main()