Class: Aws::S3::Encryption::EncryptHandler Private

Inherits:
Seahorse::Client::Handler
  • Object
show all
Defined in:
lib/aws-sdk-s3/encryption/encrypt_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.

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.



9
10
11
12
13
14
# File 'lib/aws-sdk-s3/encryption/encrypt_handler.rb', line 9

def call(context)
  envelope, cipher = context[:encryption][:cipher_provider].encryption_cipher
  apply_encryption_envelope(context, envelope, cipher)
  apply_encryption_cipher(context, cipher)
  @handler.call(context)
end