aws-sdk-paymentcryptography 1.58.0 → 1.59.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08a22266b1d15dbc4661d140476fff7fd6c7ecd38531334955da0d316f2b95b2'
4
- data.tar.gz: a42f91af163091837e7b26832c7f4b3b3bfdc444ddf3df031e1ae03054b8b7af
3
+ metadata.gz: ee41e80a3bb68ec84f3ddc5bb25dfdf82028c23a4bd82b6f1888f1aff36ecf44
4
+ data.tar.gz: aefa4b2aee11e95b20b2592f9da19b018dbb8fc285c5380d4fa16c7d65d34f18
5
5
  SHA512:
6
- metadata.gz: 7b8e6c04fa0f6a70aebbbf220b875d1191b0dad9d6bfa91d3a97363e58c809b40cdb4473d62c022277b26a453fbb3d8f4218b38fe61d14d31878d4cada99c5be
7
- data.tar.gz: 7abc3de112dcdc6c66fa152f9445ba0f51c0ad4768f5219c204e3b952f6477bf027a32048dd4746085e3741da87884544c147ad8a88fb471a076fe9632800046
6
+ metadata.gz: 10fcccbf3553c4c5537e952e9aa3e2c76bff6795ac65a5c212f7417b4bec5db01d5004e5a754ea3088203ed9b6a69e28f87df33709efecfd31de2a666db07b91
7
+ data.tar.gz: 37e17385f8feed7bc48a89de012bfd7ab06224e913adeadaf1a1fa2236657f54ac733473b8bbdcca6d8919399a24e8028224e7bc2bd24d473c4797b3a869a844
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2026-06-05)
5
+ ------------------
6
+
7
+ * Feature - Adds CloudFormation support for resource-based policies on AWS Payment Cryptography keys.
8
+
4
9
  1.58.0 (2026-05-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.59.0
@@ -808,7 +808,9 @@ module Aws::PaymentCryptography
808
808
  # value of zero, with the key to be checked and retaining the 3 highest
809
809
  # order bytes of the encrypted result. For AES keys, the KCV is computed
810
810
  # using a CMAC algorithm where the input data is 16 bytes of zero and
811
- # retaining the 3 highest order bytes of the encrypted result.
811
+ # retaining the 3 highest order bytes of the encrypted result. For HMAC
812
+ # keys, the KCV is computed using the hash selected at key creation on a
813
+ # zero-length message, taking the leftmost 3 bytes.
812
814
  #
813
815
  # @option params [required, Boolean] :exportable
814
816
  # Specifies whether the key is exportable from the service.
@@ -2418,7 +2420,9 @@ module Aws::PaymentCryptography
2418
2420
  # value of zero, with the key to be checked and retaining the 3 highest
2419
2421
  # order bytes of the encrypted result. For AES keys, the KCV is computed
2420
2422
  # using a CMAC algorithm where the input data is 16 bytes of zero and
2421
- # retaining the 3 highest order bytes of the encrypted result.
2423
+ # retaining the 3 highest order bytes of the encrypted result. For HMAC
2424
+ # keys, the KCV is computed using the hash selected at key creation on a
2425
+ # zero-length message, taking the leftmost 3 bytes.
2422
2426
  #
2423
2427
  # @option params [Boolean] :enabled
2424
2428
  # Specifies whether import key is enabled.
@@ -3508,7 +3512,7 @@ module Aws::PaymentCryptography
3508
3512
  tracer: tracer
3509
3513
  )
3510
3514
  context[:gem_name] = 'aws-sdk-paymentcryptography'
3511
- context[:gem_version] = '1.58.0'
3515
+ context[:gem_version] = '1.59.0'
3512
3516
  Seahorse::Client::Request.new(handlers, context)
3513
3517
  end
3514
3518
 
@@ -255,7 +255,9 @@ module Aws::PaymentCryptography
255
255
  # highest order bytes of the encrypted result. For AES keys, the KCV
256
256
  # is computed using a CMAC algorithm where the input data is 16 bytes
257
257
  # of zero and retaining the 3 highest order bytes of the encrypted
258
- # result.
258
+ # result. For HMAC keys, the KCV is computed using the hash selected
259
+ # at key creation on a zero-length message, taking the leftmost 3
260
+ # bytes.
259
261
  # @return [String]
260
262
  #
261
263
  # @!attribute [rw] exportable
@@ -594,7 +596,9 @@ module Aws::PaymentCryptography
594
596
  # highest order bytes of the encrypted result. For AES keys, the KCV
595
597
  # is computed using a CMAC algorithm where the input data is 16 bytes
596
598
  # of zero and retaining the 3 highest order bytes of the encrypted
597
- # result.
599
+ # result. For HMAC keys, the KCV is computed using the hash selected
600
+ # at key creation on a zero-length message, taking the leftmost 3
601
+ # bytes.
598
602
  # @return [String]
599
603
  #
600
604
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/ExportAttributes AWS API Documentation
@@ -1404,7 +1408,9 @@ module Aws::PaymentCryptography
1404
1408
  # highest order bytes of the encrypted result. For AES keys, the KCV
1405
1409
  # is computed using a CMAC algorithm where the input data is 16 bytes
1406
1410
  # of zero and retaining the 3 highest order bytes of the encrypted
1407
- # result.
1411
+ # result. For HMAC keys, the KCV is computed using the hash selected
1412
+ # at key creation on a zero-length message, taking the leftmost 3
1413
+ # bytes.
1408
1414
  # @return [String]
1409
1415
  #
1410
1416
  # @!attribute [rw] enabled
@@ -1671,7 +1677,9 @@ module Aws::PaymentCryptography
1671
1677
  # highest order bytes of the encrypted result. For AES keys, the KCV
1672
1678
  # is computed using a CMAC algorithm where the input data is 16 bytes
1673
1679
  # of zero and retaining the 3 highest order bytes of the encrypted
1674
- # result.
1680
+ # result. For HMAC keys, the KCV is computed using the hash selected
1681
+ # at key creation on a zero-length message, taking the leftmost 3
1682
+ # bytes.
1675
1683
  # @return [String]
1676
1684
  #
1677
1685
  # @!attribute [rw] enabled
@@ -2757,7 +2765,9 @@ module Aws::PaymentCryptography
2757
2765
  # highest order bytes of the encrypted result. For AES keys, the KCV
2758
2766
  # is computed using a CMAC algorithm where the input data is 16 bytes
2759
2767
  # of zero and retaining the 3 highest order bytes of the encrypted
2760
- # result.
2768
+ # result. For HMAC keys, the KCV is computed using the hash selected
2769
+ # at key creation on a zero-length message, taking the leftmost 3
2770
+ # bytes.
2761
2771
  # @return [String]
2762
2772
  #
2763
2773
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/WrappedKey AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::PaymentCryptography
55
55
  autoload :EndpointProvider, 'aws-sdk-paymentcryptography/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-paymentcryptography/endpoints'
57
57
 
58
- GEM_VERSION = '1.58.0'
58
+ GEM_VERSION = '1.59.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-paymentcryptography
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.58.0
4
+ version: 1.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services