Sha256: eee0177da6441dd45a54f08ed30bdfd21d328843c6a3f8ec70dbf82332b16c62

Contents?: true

Size: 1.75 KB

Versions: 210

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

require 'stringio'
require 'tempfile'

module Aws
  module S3
    module Encryption

      # 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
      class IOEncrypter

        # @api private
        ONE_MEGABYTE = 1024 * 1024

        def initialize(cipher, io)
          @encrypted = io.size <= ONE_MEGABYTE ?
            encrypt_to_stringio(cipher, io.read) :
            encrypt_to_tempfile(cipher, io)
          @size = @encrypted.size
        end

        # @return [Integer]
        attr_reader :size

        def read(bytes =  nil, output_buffer = nil)
          if Tempfile === @encrypted && @encrypted.closed?
            @encrypted.open
            @encrypted.binmode
          end
          @encrypted.read(bytes, output_buffer)
        end

        def rewind
          @encrypted.rewind
        end

        # @api private
        def close
          @encrypted.close if Tempfile === @encrypted
        end

        private

        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

        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

      end
    end
  end
end

Version data entries

210 entries across 210 versions & 2 rubygems

Version Path
aws-sdk-s3-1.173.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.172.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.171.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.170.1 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.170.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.169.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.168.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.167.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.166.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.165.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.164.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.163.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.162.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.161.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.160.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.159.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.158.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.157.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.156.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.155.0 lib/aws-sdk-s3/encryption/io_encrypter.rb