Skip to content

Commit 540acd9

Browse files
committed
docs: Add note about OpenSSL 3 limitation for CloudFront custom classes
1 parent cb6d6e4 commit 540acd9

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"services": [
3+
{
4+
"serviceName": "CloudFront",
5+
"type": "patch",
6+
"changeLogMessages": [
7+
"Add note about OpenSSL 3 limitation for `AmazonCloudFrontUrlSigner` and `AmazonCloudFrontCookieSigner` utility classes."
8+
]
9+
}
10+
]
11+
}

sdk/src/Services/CloudFront/Custom/AmazonCloudFrontCookieSigner.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ namespace Amazon.CloudFront
3030
/// <summary>
3131
/// This utility class provides methods for creating signed cookies for
3232
/// Amazon CloudFront distributions using canned or custom policies.
33+
/// <para />
34+
/// This class <b>does not</b> support OpenSSL 3 or later.
35+
/// <para />
36+
/// To use private keys generated by newer versions of OpenSSL, you must migrate to the
37+
/// <a href="https://www.nuget.org/packages/AWSSDK.Extensions.CloudFront.Signers">AWSSDK.Extensions.CloudFront.Signers</a>
38+
/// package available in version 4 of the AWS SDK for .NET.
3339
/// </summary>
3440
public static class AmazonCloudFrontCookieSigner
3541
{

sdk/src/Services/CloudFront/Custom/AmazonCloudFrontUrlSigner.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ namespace Amazon.CloudFront
3232
/// <summary>
3333
/// This utility class provides methods for creating signed URLs for
3434
/// Amazon CloudFront distributions using canned or custom policies.
35+
/// <para />
36+
/// This class <b>does not</b> support OpenSSL 3 or later.
37+
/// <para />
38+
/// To use private keys generated by newer versions of OpenSSL, you must migrate to the
39+
/// <a href="https://www.nuget.org/packages/AWSSDK.Extensions.CloudFront.Signers">AWSSDK.Extensions.CloudFront.Signers</a>
40+
/// package available in version 4 of the AWS SDK for .NET.
3541
/// </summary>
3642
public static class AmazonCloudFrontUrlSigner
3743
{

0 commit comments

Comments
 (0)