- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
(免责声明:这是一个“操作方法”,因为我在实现 AWS 签名版本 4 时找不到任何 CF 示例)
你是如何实现的Task 1: Create a Canonical Request for Signature Version 4在CF?
概括:
最佳答案
下面是 Task 1: Create a Canonical Request for Signature Version 4 的 cfscript 实现
结果:
f536975d06c0309214f805bb90ccff089219ecd68b2577efef23edd43b7e1a59
requestMethod = "GET";
writeOutput("<br>requestMethod: <code>"& requestMethod &"</code>");
originalURI = "";
// If the absolute path is empty, use a forward slash (/)
originalURI = len(trim(originalURI)) ? originalURI : "/"& originalURI;
// Encode URI and preserve forward slashes
canonicalURI = replace( encodeRFC3986( originalURI ), "%2F", "/", "all");
writeOutput("<br>canonicalURI: <code>"& canonicalURI &"</code>");
queryParams = { "Action"="ListUsers", "Version"="2010-05-08" };
// a) Encode parameter names and values
encodedParams = {};
structEach( queryParams, function(key, value) {
encodedParams[ encodeRFC3986(arguments.key) ] = encodeRFC3986( arguments.value);
});
// b) Sort the encoded parameter in ascending order (ASCII order)
encodedKeyNames = structKeyArray( encodedParams );
arraySort( encodedKeyNames, "text" );
// c) Build the canonical query string. Starting with first parameter, append encoded
// parameter name, followed by character '=' (ASCII code 61), followed by the encoded value
encodedPairs = [];
for (key in encodedKeyNames) {
arrayAppend( encodedPairs, key &"="& encodedParams[ key ] );
}
// d) Append the character '&' (ASCII code 38) after each parameter value, except for the last value in the list.
canonicalQueryString = arrayToList( encodedPairs, "&");
writeOutput("<br>canonicalQueryString: <code>"& canonicalQueryString &"</code>");
requestHeaders = { "Content-type"= "application/x-www-form-urlencoded; charset=utf-8"
, "Host" = "iam.amazonaws.com"
, "X-Amz-Date" = "20150830T123600Z"
};
// a) Convert all header names to lowercase and remove leading spaces and trailing spaces.
// Convert sequential spaces in the header value to a single space.
cleanedHeaders = {};
structEach( requestHeaders, function(key, value) {
headerName = reReplace( trim(arguments.key), "\s+", " ", "all");
headerValue = reReplace( trim(arguments.value), "\s+", " ", "all");
cleanedHeaders[ lcase(headerName) ] = headerValue;
});
// b) [sort] the (lowercase) headers by character code
sortedHeaderNames = structKeyArray( cleanedHeaders );
arraySort( sortedHeaderNames, "text" );
// c) Append the lowercase header name followed by a colon.
// Do not sort the values in headers that have multiple values.
cleanedPairs = [];
for (key in sortedHeaderNames) {
arrayAppend( cleanedPairs, key &":"& cleanedHeaders[ key ] );
}
// d) Append new line after each header pair. Should END WITH a new line
canonicalHeaderString = arrayToList( cleanedPairs, chr(10) ) & chr(10) ;
writeOutput("<br> canonicalHeaderString: <code>"& canonicalHeaderString &"</code>");
// To create the signed headers list, convert all header names to lowercase,
// sort them by character code, and use a semicolon to separate the header names.
// Note, we already have the sorted names from the canonical header logic (step 4)
signedHeaderString = arrayToList( sortedHeaderNames, ";" );
writeOutput("<br>signedHeaderString: <code>"& signedHeaderString &"</code>");
requestPayload = "";
payloadChecksum = lcase( hash( requestPayload , "SHA256" ) );
writeOutput("<br>payloadChecksum: <code>"& payloadChecksum &"</code>");
canonicalRequest = requestMethod & chr(10)
& canonicalURI & chr(10)
& canonicalQueryString & chr(10)
& canonicalHeaderString & chr(10)
& signedHeaderString & chr(10)
& payloadChecksum ;
writeOutput("<br>canonicalRequest: <pre>"& canonicalRequest &"</pre>");
requestDigest = lcase( hash( canonicalRequest , "SHA256" ) );
writeOutput("<br>requestDigest: <code>"& requestDigest &"</code>");
/**
* URI encoding per RFC 3986:
* <ul>
* <li>Unreserved characters that should not be escaped: ALPHA / DIGIT / "-" / "." / "_" / "~" </li>
* <li>Spaces should be encoded as %20 instead of +</li>
* <li>Reserved characters that should be escaped include: ? ## [ ] @ ! $ & ' ( ) * + , ; =</li>
* </ul>
*
* @text String to encode
* @returns URI encoded text
*/
public function encodeRFC3986(required string text) {
// Requires CF10+
Local.encoded = encodeForURL(arguments.text);
// Undo encoding of tilde "~"
Local.encoded = replace( Local.encoded, "%7E", "~", "all" );
// Change space encoding from "+" to "%20"
Local.encoded = replace( Local.encoded, "+", "%20", "all" );
// URL encode asterisk "*"
Local.encoded = replace( Local.encoded, "*", "%2A", "all" );
return Local.encoded;
}
关于amazon-web-services - 如何翻译 AWS 任务 1 : Create a Canonical Request for Signature Version 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36950198/
我在 another question 中遇到此错误消息我想知道签名中的 $: 部分是什么意思? Cannot resolve caller index(Str: Str, Any); none of
Android Studio 2.3 Generate Signed Apk Second Step Signature Verification v1(Jar Signature), v2(Full
我正在尝试使用 PHPMailer 类使用 DKIM 对电子邮件进行签名,但我无法让它工作。 当我在 gmail 上看到我的电子邮件中的 header 时,我发现该类已成功在电子邮件 header 中
我正在尝试 Animal Sniffer . 我已经创建了 .signature 文件。但是要运行 check,我需要一个“签名 Artifact ”。 org.codehaus.mojo.
我想知道 Crypto.Signature.PKCS1_v1_5 和 Crypto.Signature.pkcs1_15 有什么区别? 在documentation他们使用此函数 Crypto.Sig
我正在尝试使用 AWS S3 SDK 上传图片。现在这之前可以工作,但由于某种原因它停止工作并且我开始收到此错误: 现在,当我点击链接时,它给我一个“NoSuchKey”错误: 我不太明白这一点,因为
当 Facebook 发送实时更新时,它们会在 HTTP header 中包含 X-Hub-Signature。根据他们的文档(http://developers.facebook.com/docs/
我正在使用 NuGet 的 Stripe.net SDK。我总是得到 The signature for the webhook is not present in the Stripe-Signat
从 DocumentDB 请求文档时,我偶尔会遇到 UnauthorizedException。该问题看起来类似于 Azure DocumentDB - The MAC signature found
我用我自己的文件替换了不同 dpi 文件夹中的默认 Logo 文件“ic_launcher.png”,也命名为“ic_launcher.png”,但现在我收到此错误: Error: failed to
当 Facebook 发送实时更新时,它们会在 HTTP header 中包含一个 X-Hub-Signature。根据their documentation ,他们使用 SHA1 和应用程序 sec
我有兴趣将带有 RSA 签名的 SHA-1 散列应用于某些数据,但我需要分两步进行 - 首先应用散列,然后对数据进行签名。 Signature.sign() 函数似乎创建了一个更复杂的(ASN.1?)
我将 spring boot 和 spring security 与 JWT on rest 服务一起使用。我使用了以下链接中的代码: https://www.javainuse.com/spring
我正在使用 Stripe 提供的代码来测试 webhook。 Stripe secret 和端点 secret 已经过三重检查。 Stripe 版:6.19 正文解析器:1.19 当我在 Stripe
我有一个调用 Firebase 函数的条纹 webhook。在这个函数中,我需要验证这个请求来自 Stripe 服务器。这是代码: const functions = require('firebas
我已经在网上搜索了两天多,并且可能浏览了大多数在线记录的场景和解决方法,但到目前为止没有任何效果。 我使用的是在 PHP 5.3 上运行的 PHP V2.8.7 的 AWS SDK。 我尝试使用以下代
您好,我正在使用 WooCommerce API - Node.js 客户端 https://www.npmjs.com/package/woocommerce-api 我正在尝试创建一个需要向服务器
我正在尝试创建一个预签名 URL,以帮助某些客户上传文件。这是我当前正在运行的测试脚本 # Get the service client. s3 = boto3.client('s3') boto3.
我编写了一个类,旨在使用服务器上的私钥对文本字符串进行签名和 base64,然后返回签名。每次针对相同文本运行时,它都会生成不同的签名。它为什么要这么做呢?我通过在我的测试机器上暂时禁用转换来检查是否
我们正在使用支持 OAuth 2 多边身份验证的 API。尝试运行我的 rest sharp 客户端 OAuth1Authenticator 实现时出现以下错误: Message: HTTP Stat
我是一名优秀的程序员,十分优秀!