each_byte()
Calls the given block once for each byte in the stream.
# File ext/openssl/lib/openssl/buffering.rb, line 268 def each_byte # :yields: byte while c = getc yield(c.ord) end end