class Mail::Encodings::Identity

def self.decode(str)

:nodoc:
1 byte in -> 1 byte out.
Identity encodings do no encoding/decoding and have a fixed cost:
def self.decode(str)
  str
end