# File lib/openssl/buffering.rb, line 142
  def each_byte
    while c = getc
      yield(c)
    end
  end