Class: Aws::S3::Encryption::DecryptHandler Private

Inherits:
Seahorse::Client::Handler
  • Object
show all
Defined in:
lib/aws-sdk-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
  AES/CBC/PKCS7Padding
)

Instance Method Summary collapse

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.



31
32
33
34
# File 'lib/aws-sdk-s3/encryption/decrypt_handler.rb', line 31

def call(context)
  attach_http_event_listeners(context)
  @handler.call(context)
end