Lines Matching refs:plain
10 plain = ( (cipher ^ (R>>8)) ) & 0xFF12 return bytechr(plain), R14 def _encryptChar(plain, R):15 plain = byteord(plain)16 cipher = ( (plain ^ (R>>8)) ) & 0xFF24 plain, R = _decryptChar(cipher, R)25 plainList.append(plain)31 for plain in plainstring:32 cipher, R = _encryptChar(plain, R)