module OpenSSL::Buffering

def each_byte

def each_byte
  while c = getc
    yield(c)
  end
end