L i dZddlmZmZmZdZdZdZdZdZ dZ e d k(r4dd l Z dd l Z e je jj y y ) a` PostScript Type 1 fonts make use of two types of encryption: charstring encryption and ``eexec`` encryption. Charstring encryption is used for the charstrings themselves, while ``eexec`` is used to encrypt larger sections of the font program, such as the ``Private`` and ``CharStrings`` dictionaries. Despite the different names, the algorithm is the same, although ``eexec`` encryption uses a fixed initial key R=55665. The algorithm uses cipher feedback, meaning that the ciphertext is used to modify the key. Because of this, the routines in this module return the new key at the end of the operation. )bytechr bytesjoinbyteordcdt|}||dz z dz}||zdzdzdz}t||fSNimiXirr)cipherRplains Z/mnt/ssd/data/python-lab/Trading/venv/lib/python3.12/site-packages/fontTools/misc/eexec.py _decryptCharrsE V_FQD (E 1*  %/A 5>1 cdt|}||dz z dz}||zdzdzdz}t||fSrr )r r r s r _encryptCharrsE ENEQD (F 1*  %/A 6?A rcg}|D]"}t||\}}|j|$t|}|t|fS)a Decrypts a string using the Type 1 encryption algorithm. Args: cipherstring: String of ciphertext. R: Initial key. Returns: decryptedStr: Plaintext string. R: Output key for subsequent decryptions. Examples:: >>> testStr = b"\0\0asdadads asds\265" >>> decryptedStr, R = decrypt(testStr, 12321) >>> decryptedStr == b'0d\nh\x15\xe8\xc4\xb2\x15\x1d\x108\x1a<6\xa1' True >>> R == 36142 True )rappendrint) cipherstringr plainListr r plainstrings rdecryptr sQ*I *q I&K A rcg}|D]"}t||\}}|j|$t|}|t|fS)a Encrypts a string using the Type 1 encryption algorithm. Note that the algorithm as described in the Type 1 specification requires the plaintext to be prefixed with a number of random bytes. (For ``eexec`` the number of random bytes is set to 4.) This routine does *not* add the random prefix to its input. Args: plainstring: String of plaintext. R: Initial key. Returns: cipherstring: Ciphertext string. R: Output key for subsequent encryptions. Examples:: >>> testStr = b"\0\0asdadads asds\265" >>> decryptedStr, R = decrypt(testStr, 12321) >>> decryptedStr == b'0d\nh\x15\xe8\xc4\xb2\x15\x1d\x108\x1a<6\xa1' True >>> R == 36142 True >>> testStr = b'0d\nh\x15\xe8\xc4\xb2\x15\x1d\x108\x1a<6\xa1' >>> encryptedStr, R = encrypt(testStr, 12321) >>> encryptedStr == b"\0\0asdadads asds\265" True >>> R == 36142 True )rrrr)rr cipherListr r rs rencryptr=sRBJ" * &!"Z(L Q rc,ddl}|j|SNr)binasciihexlify)srs r hexStringr"fs   A rc^ddl}t|j}|j|Sr)rrsplit unhexlify)hrs r deHexStringr'ls&!'')A   a  r__main__N)__doc__fontTools.misc.textToolsrrrrrrrr"r'__name__sysdoctestexittestmodfailedrrr2sd A@:& R ! z CHH_W__  % %& r