A buffer which will retain binary encoding.
# File ext/openssl/lib/openssl/buffering.rb, line 29 def initialize super force_encoding(BINARY) end
String::new # File ext/openssl/lib/openssl/buffering.rb, line 35
def << string
if string.encoding == BINARY
super(string)
else
super(string.b)
end
return self
end String#<<
Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.