Provides an IO wrapper encrpyting a stream of data. It is possible to use this same object for decrypting. You must initialize it with a decryptiion cipher in that case and the IO object must contain cipher text instead of plain text. @api private
@api private
@return [Integer]
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 18 def initialize(cipher, io) @encrypted = io.size <= ONE_MEGABYTE ? encrypt_to_stringio(cipher, io.read) : encrypt_to_tempfile(cipher, io) @size = @encrypted.size end
@api private
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 41 def close @encrypted.close if Tempfile === @encrypted end
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 28 def read(bytes = nil, output_buffer = nil) if Tempfile === @encrypted && @encrypted.closed? @encrypted.open @encrypted.binmode end @encrypted.read(bytes, output_buffer) end
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 36 def rewind @encrypted.rewind end
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 47 def encrypt_to_stringio(cipher, plain_text) if plain_text.empty? StringIO.new(cipher.final) else StringIO.new(cipher.update(plain_text) + cipher.final) end end
# File lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb, line 55 def encrypt_to_tempfile(cipher, io) encrypted = Tempfile.new(self.object_id.to_s) encrypted.binmode while chunk = io.read(ONE_MEGABYTE) encrypted.write(cipher.update(chunk)) end encrypted.write(cipher.final) encrypted.rewind encrypted end