Class: Aws::S3::EncryptionV2::IODecrypter Private
- Inherits:
-
Object
- Object
- Aws::S3::EncryptionV2::IODecrypter
- Defined in:
- lib/aws-sdk-s3/encryptionV2/io_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 Attribute Summary collapse
- #io ⇒ #write readonly private
Instance Method Summary collapse
- #finalize ⇒ Object private
-
#initialize(cipher, io) ⇒ IODecrypter
constructor
private
A new instance of IODecrypter.
- #write(chunk) ⇒ Object private
Constructor Details
#initialize(cipher, io) ⇒ IODecrypter
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 IODecrypter.
11 12 13 14 15 16 |
# File 'lib/aws-sdk-s3/encryptionV2/io_decrypter.rb', line 11 def initialize(cipher, io) @cipher = cipher # Ensure that IO is reset between retries @io = io.tap { |io| io.truncate(0) if io.respond_to?(:truncate) } @cipher_buffer = String.new end |
Instance Attribute Details
#io ⇒ #write (readonly)
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.
19 20 21 |
# File 'lib/aws-sdk-s3/encryptionV2/io_decrypter.rb', line 19 def io @io 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.
30 31 32 |
# File 'lib/aws-sdk-s3/encryptionV2/io_decrypter.rb', line 30 def finalize @io.write(@cipher.final) 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.
21 22 23 24 25 26 27 28 |
# File 'lib/aws-sdk-s3/encryptionV2/io_decrypter.rb', line 21 def write(chunk) # decrypt and write if @cipher.method(:update).arity == 1 @io.write(@cipher.update(chunk)) else @io.write(@cipher.update(chunk, @cipher_buffer)) end end |