Skip to content

Commit

Permalink
feat(client-payment-cryptography): Add support for ECC P-256 and P-38…
Browse files Browse the repository at this point in the history
…4 Keys.
  • Loading branch information
awstools committed Oct 23, 2024
1 parent 2f74e23 commit e4119ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/client-payment-cryptography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ AWS SDK for JavaScript PaymentCryptography Client for Node.js, Browser and React

## Installing

To install the this package, simply type add or install @aws-sdk/client-payment-cryptography
To install this package, simply type add or install @aws-sdk/client-payment-cryptography
using your favorite package manager:

- `npm install @aws-sdk/client-payment-cryptography`
Expand Down
2 changes: 2 additions & 0 deletions clients/client-payment-cryptography/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ export const KeyAlgorithm = {
AES_128: "AES_128",
AES_192: "AES_192",
AES_256: "AES_256",
ECC_NIST_P256: "ECC_NIST_P256",
ECC_NIST_P384: "ECC_NIST_P384",
RSA_2048: "RSA_2048",
RSA_3072: "RSA_3072",
RSA_4096: "RSA_4096",
Expand Down
8 changes: 8 additions & 0 deletions codegen/sdk-codegen/aws-models/payment-cryptography.json
Original file line number Diff line number Diff line change
Expand Up @@ -1518,6 +1518,14 @@
{
"value": "RSA_4096",
"name": "RSA_4096"
},
{
"value": "ECC_NIST_P256",
"name": "ECC_NIST_P256"
},
{
"value": "ECC_NIST_P384",
"name": "ECC_NIST_P384"
}
]
}
Expand Down

0 comments on commit e4119ab

Please sign in to comment.