In Files

  • openssl/lib/openssl/buffering.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

OpenSSL::Buffering::Buffer

A buffer which will retain binary encoding.

Constants

BINARY

Public Class Methods

new() click to toggle source
 
               # File openssl/lib/openssl/buffering.rb, line 28
def initialize
  super

  force_encoding(BINARY)
end
            

Public Instance Methods

<<(string) click to toggle source
 
               # File openssl/lib/openssl/buffering.rb, line 34
def << string
  if string.encoding == BINARY
    super(string)
  else
    super(string.b)
  end

  return self
end
            
Also aliased as: concat
concat(string) click to toggle source
Alias for: <<