# File lib/archive/zip/codec/null_encryption.rb, line 136
      def initialize(io)
        @io = io

        # Keep track of the total number of bytes read.
        @total_bytes_out = 0

        # Assume that the delegate IO object is already buffered.
        self.fill_size = 0
      end