summaryrefslogtreecommitdiff
path: root/novaclient/crypto.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove sixStephen Finucane2020-02-211-3/+1
| | | | | | | | Mostly a find-replace job. Let's do this now so we don't have to carry it for the next decade. Change-Id: I7bef9fb7c6895f746cee1aca6522786f38b9857c Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
* Fixes Python3 issue in decoding passwordAlessandro Pilotti2018-10-261-0/+5
| | | | | | | | | | | The 'nova get-password' command shows a passowrd as bytes instead of string in Python 3 currently. It should be shown as string. So fix it. Co-Authored-By: Takashi Natsume <natsume.takashi@lab.ntt.co.jp> Change-Id: Ibcfb071fcc3c74535b800295ec95ca5ec8bc3c9b Closes-Bug: #1794167
* Corrects typos "coearse," "proejct," and "unecrypts"Rafael Rivero2014-09-181-1/+1
| | | | | | | | | Misspelling of "coerce" found in the docstring body of method _boot from class ServerManager. Misspellings of "project" and "unencrypts" found in docstrings of client.py and crypto.py. Change-Id: I052c321f3ad5e13aa57a559e2f28ec5eec32a9b4
* Enables H403 pep8 rulesSushil Kumar2013-12-141-1/+2
| | | | | | | | Updates tox.ini to reduce ignored rules. Updates code for H403 violation. Change-Id: Iee7b34a27c62ce8cb0f26166b3c16e3386e2fecd
* Implement get password for novaclientVishvananda Ishaya2013-01-151-0/+37
This will download and decrypt a base64 encoded encrypted password from the os-server-password extension. It depends on the user having openssl installed, but if there is an error of any kind it will print out the encoded and encrypted password instead. It also implements clear_password which will delete the password so it can no longer be retrieved. Change-Id: I2c4e6c3f03b70dc98d6d339381648a6058f46e21