Class: Aws::S3::EncryptionV3::IOAuthDecrypter Private
- Inherits:
-
Object
- Object
- Aws::S3::EncryptionV3::IOAuthDecrypter
- Defined in:
- lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.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
- #finalize ⇒ Object private
-
#initialize(options = {}) ⇒ IOAuthDecrypter
constructor
private
A new instance of IOAuthDecrypter.
- #io ⇒ Object private
- #write(chunk) ⇒ Object private
Constructor Details
#initialize(options = {}) ⇒ IOAuthDecrypter
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.
Returns a new instance of IOAuthDecrypter.
17 18 19 20 21 22 23 |
# File 'lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb', line 17 def initialize( = {}) @decrypter = IODecrypter.new([:cipher], [:io]) @max_bytes = [:encrypted_content_length] @bytes_written = 0 @cipher = [:cipher] @auth_tag = String.new end |
Instance Method Details
#finalize ⇒ 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.
33 34 35 36 |
# File 'lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb', line 33 def finalize @cipher.auth_tag = @auth_tag @decrypter.finalize end |
#io ⇒ 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.
38 39 40 |
# File 'lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb', line 38 def io @decrypter.io end |
#write(chunk) ⇒ 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.
25 26 27 28 29 30 31 |
# File 'lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb', line 25 def write(chunk) chunk = truncate_chunk(chunk) return unless chunk.bytesize.positive? @bytes_written += chunk.bytesize @decrypter.write(chunk) end |