Using RC2 Cipher from PyCryptodome
Code uses RC2: from Crypto.Cipher import ARC2; cipher = ARC2.new(key, ARC2.MODE_CBC). RC2 is obsolete cipher from 1987. Variable key size but weak algorithm. Vulnerable to related-key attacks. 64-bit block size like Blowfish. No legitimate modern use case.