class HexaPDF::Encryption::FastARC4

def process(data)

decryption.
Since this is a symmetric algorithm, the same method can be used for encryption and

Processes the given data.
def process(data)
  @cipher.update(data)
end