Sha256: eee0177da6441dd45a54f08ed30bdfd21d328843c6a3f8ec70dbf82332b16c62

Contents?: true

Size: 1.75 KB

Versions: 211

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

211 entries across 211 versions & 2 rubygems

Version Path
aws-sdk-s3-1.139.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.138.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.137.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.136.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.135.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.134.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.133.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.132.1 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.132.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.131.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.130.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.129.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.128.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.127.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.126.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.125.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.124.0 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.123.2 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.123.1 lib/aws-sdk-s3/encryption/io_encrypter.rb
aws-sdk-s3-1.123.0 lib/aws-sdk-s3/encryption/io_encrypter.rb