testscripts/hmac_client.py [95:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    print("uri is " + uri)
    content_body = "".encode("UTF-8")
    content_hash = checksum(content_body)

    authtoken, httpdate = get_token(uri, options.secret, method, content_body, content_hash)
    print(authtoken)

    headers = {
            'Date': httpdate,
            'Authorization': authtoken,
            'X-Sha384-Checksum': content_hash,
    }

    print(headers)
    extra_kwargs = {}
    if options.sslnoverify:
        extra_kwargs['verify'] = False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



testscripts/request-move-file.py [83:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print("uri is " + uri)
content_body = "".encode("UTF-8")
content_hash = checksum(content_body)

authtoken, httpdate = get_token(uri, options.secret, method, content_body, content_hash)
print(authtoken)

headers = {
        'Date': httpdate,
        'Authorization': authtoken,
        'X-Sha384-Checksum': content_hash,
}

print(headers)
extra_kwargs = {}
if options.sslnoverify:
    extra_kwargs['verify'] = False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



