0

我正在尝试为使用 Azure 存储 REST API 创建授权标头。什么样的恶梦。我尝试这样做的原因是因为我尝试使用工作流构建器 (Alteryx) 来调用 API,所以我唯一的编程选项是 Alteryx、python 或命令行。

我想我已经接近了,但我只是不理解最后三行代码,遵循这篇文章 - https://docs.microsoft.com/en-us/azure/storage/common/storage-rest-api -auth?toc=%2fazure%2fstorage%2fblobs%2ftoc.json

// 现在把它变成一个字节数组。byte[] SignatureBytes = Encoding.UTF8.GetBytes(MessageSignature);

// 创建存储密钥的 HMACSHA256 版本。HMACSHA256 SHA256 = 新 HMACSHA256(Convert.FromBase64String(storageAccountKey));

// 计算 SignatureBytes 的哈希并将其转换为 base64 字符串。字符串签名 = Convert.ToBase64String(SHA256.ComputeHash(SignatureBytes));

因此,如果我正确地遵循这一点,我必须创建一个 SHA256 版本的存储密钥,然后我制作一个 SHA256 散列的签名字节的 SHA256 散列?

我目前正在谷歌搜索并没有走远,但基本上尝试使用 python 在.net 中做同样的事情。

4

1 回答 1

3

在 python 中,你可以使用这行代码:

signed_string = base64.b64encode(hmac.new(base64.b64decode(storage_account_key), msg=string_to_sign.encode('utf-8'), digestmod=hashlib.sha256).digest()).decode()

下面是使用List blobs api的完整代码:

import requests
import datetime
import hmac
import hashlib
import base64

storage_account_name = 'xx'
storage_account_key = 'xxx'
container_name='aa1'
api_version = '2017-07-29'
request_time = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')

string_params = {
    'verb': 'GET',
    'Content-Encoding': '',
    'Content-Language': '',
    'Content-Length': '',
    'Content-MD5': '',
    'Content-Type': '',
    'Date': '',
    'If-Modified-Since': '',
    'If-Match': '',
    'If-None-Match': '',
    'If-Unmodified-Since': '',
    'Range': '',
    'CanonicalizedHeaders': 'x-ms-date:' + request_time + '\nx-ms-version:' + api_version + '\n',
    'CanonicalizedResource': '/' + storage_account_name +'/'+container_name+ '\ncomp:list\nrestype:container'
}

string_to_sign = (string_params['verb'] + '\n' 
                  + string_params['Content-Encoding'] + '\n'
                  + string_params['Content-Language'] + '\n'
                  + string_params['Content-Length'] + '\n'
                  + string_params['Content-MD5'] + '\n' 
                  + string_params['Content-Type'] + '\n' 
                  + string_params['Date'] + '\n' 
                  + string_params['If-Modified-Since'] + '\n'
                  + string_params['If-Match'] + '\n'
                  + string_params['If-None-Match'] + '\n'
                  + string_params['If-Unmodified-Since'] + '\n'
                  + string_params['Range'] + '\n'
                  + string_params['CanonicalizedHeaders']
                  + string_params['CanonicalizedResource'])

signed_string = base64.b64encode(hmac.new(base64.b64decode(storage_account_key), msg=string_to_sign.encode('utf-8'), digestmod=hashlib.sha256).digest()).decode()

headers = {
    'x-ms-date' : request_time,
    'x-ms-version' : api_version,
    'Authorization' : ('SharedKey ' + storage_account_name + ':' + signed_string)
}

url = ('https://' + storage_account_name + '.blob.core.windows.net/'+container_name+'?restype=container&comp=list')

r = requests.get(url, headers = headers)
print(r.status_code)
print('\n\n'+r.text)

测试结果:

在此处输入图像描述

于 2019-05-30T02:13:37.927 回答