method

each_byte

v1_9_2_180 - Show latest stable - Class: OpenSSL::Buffering
each_byte()
public

No documentation available.

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