aws-sdk-s3 1.207.0 → 1.208.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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/client.rb +1 -1
  5. data/lib/aws-sdk-s3/customizations.rb +1 -0
  6. data/lib/aws-sdk-s3/encryption/client.rb +2 -2
  7. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
  8. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
  9. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
  10. data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
  11. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
  12. data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
  13. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
  14. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
  15. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
  16. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
  17. data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
  18. data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
  19. data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
  20. data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
  21. data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
  22. data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
  23. data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
  24. data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
  25. data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
  26. data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
  27. data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
  28. data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
  29. data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
  30. data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
  31. data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
  32. data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
  33. data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
  34. data/lib/aws-sdk-s3.rb +1 -1
  35. metadata +17 -1
@@ -0,0 +1,321 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'openssl'
4
+
5
+ module Aws
6
+ module S3
7
+ module EncryptionV3
8
+ # @api private
9
+ module Utils
10
+ class << self
11
+ ##= ../specification/s3-encryption/client.md#encryption-algorithm
12
+ ##% The S3EC MUST validate that the configured encryption algorithm is not legacy.
13
+ def validate_cek(content_encryption_schema)
14
+ ##= ../specification/s3-encryption/data-format/content-metadata.md#algorithm-suite-and-message-format-version-compatibility
15
+ ##% Objects encrypted with ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY MUST use the V3 message format version only.
16
+ return '115' if content_encryption_schema.nil?
17
+
18
+ case content_encryption_schema
19
+ when :alg_aes_256_gcm_hkdf_sha512_commit_key
20
+ '115'
21
+ else
22
+ ##= ../specification/s3-encryption/encryption.md#alg-aes-256-ctr-iv16-tag16-no-kdf
23
+ ##% Attempts to encrypt using AES-CTR MUST fail.
24
+ ##= ../specification/s3-encryption/encryption.md#alg-aes-256-ctr-hkdf-sha512-commit-key
25
+ ##% Attempts to encrypt using key committing AES-CTR MUST fail.
26
+ ##= ../specification/s3-encryption/client.md#encryption-algorithm
27
+ ##% If the configured encryption algorithm is legacy, then the S3EC MUST throw an exception.
28
+ ##= ../specification/s3-encryption/client.md#key-commitment
29
+ ##% If the configured Encryption Algorithm is incompatible with the key commitment policy, then it MUST throw an exception.
30
+ raise ArgumentError, "Unsupported content_encryption_schema: #{content_encryption_schema}"
31
+ end
32
+ end
33
+
34
+ def encrypt_aes_gcm(key, data, auth_data)
35
+ cipher = aes_encryption_cipher(:GCM, key)
36
+ cipher.iv = (iv = cipher.random_iv)
37
+ cipher.auth_data = auth_data
38
+
39
+ iv + cipher.update(data) + cipher.final + cipher.auth_tag
40
+ end
41
+
42
+ def encrypt_rsa(key, data, auth_data)
43
+ # Plaintext must be KeyLengthInBytes (1 Byte) + DataKey + AuthData
44
+ buf = [data.bytesize] + data.unpack('C*') + auth_data.unpack('C*')
45
+ key.public_encrypt(buf.pack('C*'), OpenSSL::PKey::RSA::PKCS1_OAEP_PADDING)
46
+ end
47
+
48
+ def decrypt_aes_gcm(key, data, auth_data)
49
+ # data is iv (12B) + key + tag (16B)
50
+ buf = data.unpack('C*')
51
+ iv = buf[0, 12].pack('C*') # iv will always be 12 bytes
52
+ tag = buf[-16, 16].pack('C*') # tag is 16 bytes
53
+ enc_key = buf[12, buf.size - (12 + 16)].pack('C*')
54
+ cipher = aes_cipher(:decrypt, :GCM, key, iv)
55
+ cipher.auth_tag = tag
56
+ cipher.auth_data = auth_data
57
+ cipher.update(enc_key) + cipher.final
58
+ end
59
+
60
+ # returns the decrypted data + auth_data
61
+ def decrypt_rsa(key, enc_data)
62
+ # Plaintext must be KeyLengthInBytes (1 Byte) + DataKey + AuthData
63
+ buf = key.private_decrypt(enc_data, OpenSSL::PKey::RSA::PKCS1_OAEP_PADDING).unpack('C*')
64
+ key_length = buf[0]
65
+ data = buf[1, key_length].pack('C*')
66
+ auth_data = buf[key_length + 1, buf.length - key_length].pack('C*')
67
+ [data, auth_data]
68
+ end
69
+
70
+ # @param [String] block_mode "CBC" or "ECB"
71
+ # @param [OpenSSL::PKey::RSA, String, nil] key
72
+ # @param [String, nil] iv The initialization vector
73
+ def aes_encryption_cipher(block_mode, key = nil, iv = nil)
74
+ aes_cipher(:encrypt, block_mode, key, iv)
75
+ end
76
+
77
+ # @param [String] block_mode "CBC" or "ECB"
78
+ # @param [OpenSSL::PKey::RSA, String, nil] key
79
+ # @param [String, nil] iv The initialization vector
80
+ def aes_decryption_cipher(block_mode, key = nil, iv = nil)
81
+ aes_cipher(:decrypt, block_mode, key, iv)
82
+ end
83
+
84
+ # @param [String] mode "encrypt" or "decrypt"
85
+ # @param [String] block_mode "CBC" or "ECB"
86
+ # @param [OpenSSL::PKey::RSA, String, nil] key
87
+ # @param [String, nil] iv The initialization vector
88
+ def aes_cipher(mode, block_mode, key, iv)
89
+ cipher =
90
+ if key
91
+ OpenSSL::Cipher.new("aes-#{cipher_size(key)}-#{block_mode.downcase}")
92
+ else
93
+ OpenSSL::Cipher.new("aes-256-#{block_mode.downcase}")
94
+ end
95
+ cipher.send(mode) # encrypt or decrypt
96
+ cipher.key = key if key
97
+ cipher.iv = iv if iv
98
+ cipher
99
+ end
100
+
101
+ # @param [String] key
102
+ # @return [Integer]
103
+ # @raise ArgumentError
104
+ def cipher_size(key)
105
+ key.bytesize * 8
106
+ end
107
+
108
+ # There is only 1 supported algorithm suite at this time
109
+ ENCRYPTION_KEY_INFO = ([0x00, 0x73].pack('C*') + 'DERIVEKEY'.encode('UTF-8')).freeze
110
+ COMMITMENT_KEY_INFO = ([0x00, 0x73].pack('C*') + 'COMMITKEY'.encode('UTF-8')).freeze
111
+
112
+ SHA512_DIGEST = OpenSSL::Digest::SHA512.new.freeze
113
+ V3_IV_BYTES = ("\x01" * 12).freeze
114
+ ALGO_ID = [0x00, 0x73].pack('C*').freeze
115
+
116
+ def generate_alg_aes_256_gcm_hkdf_sha512_commit_key_cipher(data_key)
117
+ ##= ../specification/s3-encryption/encryption.md#content-encryption
118
+ ##% The client MUST generate an IV or Message ID using the length of the IV or Message ID defined in the algorithm suite.
119
+ message_id = Utils.generate_message_id
120
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
121
+ ##% - The salt MUST be the Message ID with the length defined in the algorithm suite.
122
+ commitment_key = Utils.derive_commitment_key(data_key, message_id)
123
+ cipher = alg_aes_256_gcm_hkdf_sha512_commit_key_cipher(:encrypt, data_key, message_id)
124
+
125
+ [
126
+ cipher,
127
+ ##= ../specification/s3-encryption/encryption.md#content-encryption
128
+ ##% The generated IV or Message ID MUST be set or returned from the encryption process such that it can be included in the content metadata.
129
+ message_id,
130
+ ##= ../specification/s3-encryption/encryption.md#alg-aes-256-gcm-hkdf-sha512-commit-key
131
+ ##% The derived key commitment value MUST be set or returned from the encryption process such that it can be included in the content metadata.
132
+ commitment_key
133
+ ]
134
+ end
135
+
136
+ def derive_alg_aes_256_gcm_hkdf_sha512_commit_key_cipher(data_key, message_id, stored_commitment_key)
137
+ raise Errors::DecryptionError, 'Data key length does not match algorithm suite' unless data_key.length == 32
138
+
139
+ raise Errors::DecryptionError, 'Message id length does not match algorithm suite' unless message_id.length == 28
140
+
141
+ unless stored_commitment_key.length == 28
142
+ raise Errors::DecryptionError, 'Commitment key length does not match algorithm suite'
143
+ end
144
+
145
+ ##= ../specification/s3-encryption/decryption.md#decrypting-with-commitment
146
+ ##= type=implication
147
+ ##% When using an algorithm suite which supports key commitment,
148
+ ##% the verification of the derived key commitment value MUST be done in constant time.
149
+ unless timing_safe_equal?(
150
+ ##= ../specification/s3-encryption/decryption.md#decrypting-with-commitment
151
+ ##% When using an algorithm suite which supports key commitment,
152
+ ##% the client MUST verify that the [derived key commitment](./key-derivation.md#hkdf-operation) contains the same bytes
153
+ ##% as the stored key commitment retrieved from the stored object's metadata.
154
+ Utils.derive_commitment_key(data_key, message_id),
155
+ stored_commitment_key
156
+ )
157
+ ##= ../specification/s3-encryption/decryption.md#decrypting-with-commitment
158
+ ##% When using an algorithm suite which supports key commitment,
159
+ ##% the client MUST throw an exception when the derived key commitment value and stored key commitment value do not match.
160
+ raise Errors::DecryptionError, 'Commitment key verification failed'
161
+ end
162
+
163
+ ##= ../specification/s3-encryption/decryption.md#decrypting-with-commitment
164
+ ##% When using an algorithm suite which supports key commitment,
165
+ ##% the client MUST verify the key commitment values match before deriving the [derived encryption key](./key-derivation.md#hkdf-operation).
166
+
167
+ alg_aes_256_gcm_hkdf_sha512_commit_key_cipher(:decrypt, data_key, message_id)
168
+ end
169
+
170
+ def alg_aes_256_gcm_hkdf_sha512_commit_key_cipher(mode, data_key, message_id)
171
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
172
+ ##% The client MUST initialize the cipher, or call an AES-GCM encryption API, with the derived encryption key, an IV containing only bytes with the value 0x01,
173
+ ##% and the tag length defined in the Algorithm Suite when encrypting or decrypting with ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY.
174
+ cipher = Utils.aes_cipher(
175
+ mode,
176
+ :GCM,
177
+ ##= ../specification/s3-encryption/encryption.md#alg-aes-256-gcm-hkdf-sha512-commit-key
178
+ ##% The client MUST use HKDF to derive the key commitment value and the derived encrypting key as described in [Key Derivation](key-derivation.md).
179
+ Utils.derive_encryption_key(data_key, message_id),
180
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
181
+ ##% When encrypting or decrypting with ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY,
182
+ ##% the IV used in the AES-GCM content encryption/decryption MUST consist entirely of bytes with the value 0x01.
183
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
184
+ ##% The IV's total length MUST match the IV length defined by the algorithm suite.
185
+ V3_IV_BYTES
186
+ ) #OpenSSL::Cipher.new("aes-256-gcm")
187
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
188
+ ##% The client MUST set the AAD to the Algorithm Suite ID represented as bytes.
189
+ cipher.auth_data = ALGO_ID # auth_data must be set after key and iv
190
+ cipher
191
+ end
192
+
193
+ def generate_data_key
194
+ OpenSSL::Random.random_bytes(32)
195
+ end
196
+
197
+ def generate_message_id
198
+ ##= ../specification/s3-encryption/encryption.md#cipher-initialization
199
+ ##= type=exception
200
+ ##= reason=This would be a new runtime error that happens randomly.
201
+ ##% The client SHOULD validate that the generated IV or Message ID is not zeros.
202
+
203
+ ##= ../specification/s3-encryption/encryption.md#content-encryption
204
+ ##% The client MUST generate an IV or Message ID using the length of the IV or Message ID defined in the algorithm suite.
205
+ OpenSSL::Random.random_bytes(28)
206
+ end
207
+
208
+ def derive_encryption_key(data_key, message_id)
209
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
210
+ ##% - The DEK input pseudorandom key MUST be the output from the extract step.
211
+ hkdf(
212
+ data_key,
213
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
214
+ ##% - The salt MUST be the Message ID with the length defined in the algorithm suite.
215
+ message_id,
216
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
217
+ ##% - The input info MUST be a concatenation of the algorithm suite ID as bytes followed by the string DERIVEKEY as UTF8 encoded bytes.
218
+ ENCRYPTION_KEY_INFO,
219
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
220
+ ##% - The length of the output keying material MUST equal the encryption key length specified by the algorithm suite encryption settings.
221
+ 32
222
+ )
223
+ end
224
+
225
+ def derive_commitment_key(data_key, message_id)
226
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
227
+ ##% - The CK input pseudorandom key MUST be the output from the extract step.
228
+ hkdf(
229
+ data_key,
230
+ message_id,
231
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
232
+ ##% - The input info MUST be a concatenation of the algorithm suite ID as bytes followed by the string COMMITKEY as UTF8 encoded bytes.
233
+ COMMITMENT_KEY_INFO,
234
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
235
+ ##% - The length of the output keying material MUST equal the commit key length specified by the supported algorithm suites.
236
+ 28
237
+ )
238
+ end
239
+
240
+ ONE_BYTE = [1].pack('C').freeze
241
+ # assert: the following function is equivalent to `OpenSSL::KDF.hkdf` for all desired_length <= 64
242
+ # see spec: 'produces identical output to native hkdf for random inputs (property-based test)'
243
+ def hkdf_fallback(input_key_material, salt, info, desired_length)
244
+ # Extract from RFC 5869
245
+ # PRK = HMAC-Hash(salt, IKM)
246
+ prk = OpenSSL::HMAC.digest(SHA512_DIGEST, salt, input_key_material)
247
+
248
+ # Expand from RFC 5869
249
+ # N = ceil(L/HashLen)
250
+ # T = T(1) | T(2) | T(3) | ... | T(N)
251
+ # OKM = first L octets of T
252
+ #
253
+ # where:
254
+ # T(0) = empty string (zero length)
255
+ # T(1) = HMAC-Hash(PRK, T(0) | info | 0x01)
256
+ # T(2) = HMAC-Hash(PRK, T(1) | info | 0x02)
257
+ # T(3) = HMAC-Hash(PRK, T(2) | info | 0x03)
258
+ #
259
+ # L == desired_length
260
+ # HashLen == 64 (because SHA512_DIGEST is fixed)
261
+ # N = ceil(desired_length/64)
262
+ # The only supported suites have desired_length less than 64
263
+ # This will result in a single iteration of the expand loop.
264
+ # This check verifies that it is safe to do not do a loop
265
+ raise Errors::DecryptionError, "Unsupported length: #{desired_length}" if desired_length > 64
266
+
267
+ # assert N == 1
268
+ #
269
+ # For a single iteration of the loop we then get:
270
+ # OKM = first L of T(0) | T(1)
271
+ # ==
272
+ # (T(0) + T(1))[0, desired_length]
273
+ # == {assert T(0) == ''}
274
+ # ('' + HMAC-Hash(PRK, '' + info + 0x01))[0, desired_length]
275
+ # == HMAC-Hash(PRK, info + 0x01)[0, desired_length]
276
+ # == {assert ONE_BYTE == 0x01}
277
+ # HMAC-Hash(PRK, info + ONE_BYTE)[0, desired_length]
278
+ # ==
279
+ OpenSSL::HMAC.digest(SHA512_DIGEST, prk, info + ONE_BYTE)[0, desired_length]
280
+ end
281
+
282
+ if defined?(OpenSSL::KDF) && OpenSSL::KDF.respond_to?(:hkdf)
283
+ def hkdf(input_key_material, salt, info, desired_length)
284
+ OpenSSL::KDF.hkdf(
285
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
286
+ ##% - The input keying material MUST be the plaintext data key (PDK) generated by the key provider.
287
+ input_key_material,
288
+ salt: salt,
289
+ info: info,
290
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
291
+ ##% - The length of the input keying material MUST equal the key derivation input length specified by the algorithm suite commit key derivation setting.
292
+ length: desired_length,
293
+ ##= ../specification/s3-encryption/key-derivation.md#hkdf-operation
294
+ ##% - The hash function MUST be specified by the algorithm suite commitment settings.
295
+ hash: SHA512_DIGEST
296
+ )
297
+ end
298
+ else
299
+ # This is done so that we can test hkdf_fallback when we have `OpenSSL::KDF.hkdf`
300
+ alias hkdf hkdf_fallback
301
+ end
302
+
303
+ if defined?(OpenSSL) && OpenSSL.respond_to?(:secure_compare)
304
+ def timing_safe_equal?(a, b)
305
+ OpenSSL.secure_compare(a, b)
306
+ end
307
+ else
308
+ def timing_safe_equal?(a, b)
309
+ return false unless a.bytesize == b.bytesize
310
+
311
+ l = a.unpack('C*')
312
+ r = 0
313
+ b.each_byte { |byte| r |= byte ^ l.shift }
314
+ r.zero?
315
+ end
316
+ end
317
+ end
318
+ end
319
+ end
320
+ end
321
+ end
@@ -1,4 +1,5 @@
1
1
  require 'aws-sdk-s3/encryptionV2/client'
2
+ require 'aws-sdk-s3/encryptionV2/decryption'
2
3
  require 'aws-sdk-s3/encryptionV2/decrypt_handler'
3
4
  require 'aws-sdk-s3/encryptionV2/default_cipher_provider'
4
5
  require 'aws-sdk-s3/encryptionV2/encrypt_handler'
@@ -0,0 +1,24 @@
1
+ require 'aws-sdk-s3/encryptionV3/client'
2
+ require 'aws-sdk-s3/encryptionV3/decryption'
3
+ require 'aws-sdk-s3/encryptionV3/decrypt_handler'
4
+ require 'aws-sdk-s3/encryptionV3/default_cipher_provider'
5
+ require 'aws-sdk-s3/encryptionV3/encrypt_handler'
6
+ require 'aws-sdk-s3/encryptionV3/errors'
7
+ require 'aws-sdk-s3/encryptionV3/io_encrypter'
8
+ require 'aws-sdk-s3/encryptionV3/io_decrypter'
9
+ require 'aws-sdk-s3/encryptionV3/io_auth_decrypter'
10
+ require 'aws-sdk-s3/encryptionV3/key_provider'
11
+ require 'aws-sdk-s3/encryptionV3/kms_cipher_provider'
12
+ require 'aws-sdk-s3/encryptionV3/materials'
13
+ require 'aws-sdk-s3/encryptionV3/utils'
14
+ require 'aws-sdk-s3/encryptionV3/default_key_provider'
15
+
16
+ module Aws
17
+ module S3
18
+ module EncryptionV3
19
+ AES_GCM_TAG_LEN_BYTES = 16
20
+ EC_USER_AGENT = 'S3CryptoV3'
21
+ end
22
+ end
23
+ end
24
+
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.207.0'
78
+ GEM_VERSION = '1.208.0'
79
79
 
80
80
  end
81
81
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.207.0
4
+ version: 1.208.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -112,6 +112,7 @@ files:
112
112
  - lib/aws-sdk-s3/encryption/utils.rb
113
113
  - lib/aws-sdk-s3/encryptionV2/client.rb
114
114
  - lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb
115
+ - lib/aws-sdk-s3/encryptionV2/decryption.rb
115
116
  - lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb
116
117
  - lib/aws-sdk-s3/encryptionV2/default_key_provider.rb
117
118
  - lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb
@@ -123,7 +124,22 @@ files:
123
124
  - lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb
124
125
  - lib/aws-sdk-s3/encryptionV2/materials.rb
125
126
  - lib/aws-sdk-s3/encryptionV2/utils.rb
127
+ - lib/aws-sdk-s3/encryptionV3/client.rb
128
+ - lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb
129
+ - lib/aws-sdk-s3/encryptionV3/decryption.rb
130
+ - lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb
131
+ - lib/aws-sdk-s3/encryptionV3/default_key_provider.rb
132
+ - lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb
133
+ - lib/aws-sdk-s3/encryptionV3/errors.rb
134
+ - lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb
135
+ - lib/aws-sdk-s3/encryptionV3/io_decrypter.rb
136
+ - lib/aws-sdk-s3/encryptionV3/io_encrypter.rb
137
+ - lib/aws-sdk-s3/encryptionV3/key_provider.rb
138
+ - lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb
139
+ - lib/aws-sdk-s3/encryptionV3/materials.rb
140
+ - lib/aws-sdk-s3/encryptionV3/utils.rb
126
141
  - lib/aws-sdk-s3/encryption_v2.rb
142
+ - lib/aws-sdk-s3/encryption_v3.rb
127
143
  - lib/aws-sdk-s3/endpoint_parameters.rb
128
144
  - lib/aws-sdk-s3/endpoint_provider.rb
129
145
  - lib/aws-sdk-s3/endpoints.rb