Class: Aws::S3::Encryption::DecryptHandler Private
- Inherits:
-
Seahorse::Client::Handler
- Object
- Seahorse::Client::Handler
- Aws::S3::Encryption::DecryptHandler
- Defined in:
- lib/aws-sdk-resources/services/s3/encryption/decrypt_handler.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary collapse
- V1_ENVELOPE_KEYS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
%w( x-amz-key x-amz-iv x-amz-matdesc )
- V2_ENVELOPE_KEYS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
%w( x-amz-key-v2 x-amz-iv x-amz-cek-alg x-amz-wrap-alg x-amz-matdesc )
- POSSIBLE_ENVELOPE_KEYS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
(V1_ENVELOPE_KEYS + V2_ENVELOPE_KEYS).uniq
- POSSIBLE_ENCRYPTION_FORMATS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
%w( AES/GCM/NoPadding AES/CBC/PKCS5Padding )
Instance Method Summary collapse
- #call(context) ⇒ Object private
Instance Method Details
#call(context) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
30 31 32 33 |
# File 'lib/aws-sdk-resources/services/s3/encryption/decrypt_handler.rb', line 30 def call(context) attach_http_event_listeners(context) @handler.call(context) end |