module SimplyAES::Format::Bytes

The default implementation of SimplyAES::Format that reads and emits unformatted byte strings.

Public Instance Methods

dump(bytestring) click to toggle source
# File lib/simply-aes/format.rb, line 92
def dump(bytestring)
  bytestring.dup
end
load(formatted) click to toggle source
# File lib/simply-aes/format.rb, line 88
def load(formatted)
  formatted.dup
end