module HexaPDF::Encryption::Identity

def encrypt(_key, data)

Just returns the given +data+.
def encrypt(_key, data)
  data
end

def encryption_fiber(_key, source)

Just returns the given +source+ fiber.
def encryption_fiber(_key, source)
  source
end