module HexaPDF::Filter::Encryption
def self.decoder(source, options)
def self.decoder(source, options) options[:algorithm].decryption_fiber(options[:key], source) end
def self.encoder(source, options)
def self.encoder(source, options) options[:algorithm].encryption_fiber(options[:key], source) end