back out pfa 'fix'; it reverses a bug fix from last year...

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@291 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2002-07-23 14:54:47 +00:00
parent d7787131e4
commit db1f2800e1

View File

@ -312,7 +312,6 @@ def findEncryptedChunks(data):
eEnd = string.find(data, EEXECEND, eBegin) eEnd = string.find(data, EEXECEND, eBegin)
if eEnd < 0: if eEnd < 0:
raise T1Error, "can't find end of eexec part" raise T1Error, "can't find end of eexec part"
if 0:
cypherText = data[eBegin:eEnd + 2] cypherText = data[eBegin:eEnd + 2]
plainText, R = eexec.decrypt(cypherText, 55665) plainText, R = eexec.decrypt(cypherText, 55665)
eEndLocal = string.find(plainText, EEXECINTERNALEND) eEndLocal = string.find(plainText, EEXECINTERNALEND)