diff options
author | ehanan <eoin.hanan@ericsson.com> | 2018-10-19 14:55:16 +0100 |
---|---|---|
committer | eHanan <eoin.hanan@ericsson.com> | 2018-10-19 16:24:32 +0100 |
commit | b762e869c814bd8e792cc128a3a656292a490af4 (patch) | |
tree | 980753e5155b0ac481905a6685cb6a8a61dd4866 /robot | |
parent | 7e3de24bcc5e833cded21ddce8b8f19ba2512b00 (diff) |
robot script modified, removing nopad option
Change-Id: I52d535e53bf1ef569f697134dbc452855a0e6bcd
Issue-ID: TEST-126
Signed-off-by: eHanan <eoin.hanan@ericsson.com>
Diffstat (limited to 'robot')
-rw-r--r-- | robot/resources/openstack/keystone_interface.robot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/robot/resources/openstack/keystone_interface.robot b/robot/resources/openstack/keystone_interface.robot index f3e017ce..fa37733c 100644 --- a/robot/resources/openstack/keystone_interface.robot +++ b/robot/resources/openstack/keystone_interface.robot @@ -104,7 +104,7 @@ Set Openstack Credentials Get Openstack Credentials [Documentation] Returns the Decripted Password and openstack username using same api_key.txt as SO - ${DECRYPTED_OPENSTACK_PASSWORD}= Run echo -n ${GLOBAL_INJECTED_OPENSTACK_API_KEY} | xxd -r -p | openssl enc -aes-128-ecb -d -nopad -nosalt -K aa3871669d893c7fb8abbcda31b88b4f | tr -d '\x08' + ${DECRYPTED_OPENSTACK_PASSWORD}= Run echo -n ${GLOBAL_INJECTED_OPENSTACK_API_KEY} | xxd -r -p | openssl enc -aes-128-ecb -d -nosalt -K aa3871669d893c7fb8abbcda31b88b4f | tr -d '\x08' [Return] ${GLOBAL_INJECTED_OPENSTACK_USERNAME} ${DECRYPTED_OPENSTACK_PASSWORD} |