一道搜狗机试题的解答

本文深入解析搜狗输入法的加密机制,通过理解编码方法,逐步推导出解码过程。重点在于异或、与、移位等基本操作在加密算法中的应用,以及如何通过计算新种子来实现解密。

在网上看到搜狗这道机试题,觉得好深奥。一时技痒,尝试做了下,运行结果比较有意思-“搜狗输入法支持各种炫酷的皮肤,彰显个性的你!!!”。运算涉及到异或、与、(无符号)移位、还有强制转型,难度并不算大。

题目如下:

 

/**
 * 搜狗机试题,根据encode方法写出decode方法
 * 
 */
public class TestDecode {

	public static void encode(byte[] in, byte[] out, int password) {
		int len = in.length;

		int seed = password ^ 0x8c357ca5;
		for (int i = 0; i < len; ++i) {
			byte a = (byte) ((in[i] ^ seed) >>> 5);
			byte b = (byte) (((((int) in[i]) << 16) ^ seed) >>> (16 - 3));
			a &= 0x7;
			b &= 0xf8;
			out[i] = (byte) (a | b);
			seed = (seed * 3687989 ^ seed ^ in[i]);
		}
	}

	public static void decode(byte[] in, byte[] out, int password) {
		int len = in.length;

		int seed = password ^ 0x8c357ca5;
		for (int i = 0; i < len; ++i) {
                     //填写代码
		}

	}

	public static void main(String[] args) throws Exception {
		int password = 0xe87dd9d3;
		byte[] buf1 = { 29, -16, 96, 43, -85, 25, -96, 83, 13, 66, -109, 49,
				-111, 0, 60, -101, 99, -86, -38, 86, -35, 48, 23, 83, -102, 25,
				73, -116, -101, -88, -5, 14, -14, -112, 87, -87, 2, 108, -58,
				40, 56, 12, 108, 77, 83, 38, 20, -114, };
		byte[] buf2 = new byte[buf1.length];
		decode(buf1, buf2, password);
		System.out.println(new String(buf2, "GBK"));
	}
}

 

 首先,分析加密方法。seed每次加密都有变化,解密的时候,也需要计算。计算代码为:seed = (seed * 3687989 ^ seed ^ out[i]);。 循环体内,12-17行是由明文生成密文的方法。

12行,byte a = (byte) ((in[i] ^ seed) >>> 5);将明文与种子异或右移5位取证,得到的byte的3-1位是明文8-6位的与种子8-6位的异或结果。13行,byte b = (byte) (((((int) in[i]) << 16) ^ seed) >>> (16 - 3));将明文左移至24-17位与种子24-17位异或然后右移13位,得到的byte的8-4位是是原明文的5-1位与种子24-17位异或的结果。14行,

a &= 0x7;//与00000111与运算,取低三位。15行,b &= 0xf8;// 与11111000与运算取高五位。16行,out[i] = (byte) (a | b);使用a的低三位与b的高5位合成密文。很明显,经过简单的运算,明文的8-6位生成了密文的3-1位,明文的5-1位生成了密文的8-4位。

然后,根据加密方法,逐步求解。int seedForLow3 = seed;int seedForHigh5 = seed >>> 16;byte low3 = (byte) (in[i] << 5); byte hight5 = (byte) (in[i] >>> 3);//将高地位与其种子对齐。out[i] = (byte) (((low3 ^ seedForLow3) & 0xe0) | ((hight5 ^ seedForHigh5) & 0x1f));将高低位分别与种子异或后拼合为原明文。seed = (seed * 3687989 ^ seed ^ out[i]);计算新种子

完整的代码如下:/**

 * 搜狗机试题,根据encode方法写出decode方法
 * 
 * @author SunShadow
 * 
 */
public class TestDecode {

	public static void encode(byte[] in, byte[] out, int password) {
		int len = in.length;

		int seed = password ^ 0x8c357ca5;
		for (int i = 0; i < len; ++i) {
			// 与种子异或后右移5位,即高3位与876位异或 高三位至3-1
			byte a = (byte) ((in[i] ^ seed) >>> 5);
			// 与种子的24-17异或后取低五位 低五位至8-4
			byte b = (byte) (((((int) in[i]) << 16) ^ seed) >>> (16 - 3));
			a &= 0x7;// 取低三位 00000111
			b &= 0xf8;// 取高五位11111000
			out[i] = (byte) (a | b);
			seed = (seed * 3687989 ^ seed ^ in[i]);
		}
	}

	public static void decode(byte[] in, byte[] out, int password) {
		int len = in.length;

		int seed = password ^ 0x8c357ca5;
		for (int i = 0; i < len; ++i) {
			int seedForLow3 = seed;
			int seedForHigh5 = seed >>> 16;
			byte low3 = (byte) (in[i] << 5); // 现在在8-6位
			byte hight5 = (byte) (in[i] >>> 3);// 现在在5-1位
			out[i] = (byte) (((low3 ^ seedForLow3) & 0xe0) | ((hight5 ^ seedForHigh5) & 0x1f));
			seed = (seed * 3687989 ^ seed ^ out[i]);// 计算种子
		}

	}

	public static void main(String[] args) throws Exception {
		int password = 0xe87dd9d3;
		byte[] buf1 = { 29, -16, 96, 43, -85, 25, -96, 83, 13, 66, -109, 49,
				-111, 0, 60, -101, 99, -86, -38, 86, -35, 48, 23, 83, -102, 25,
				73, -116, -101, -88, -5, 14, -14, -112, 87, -87, 2, 108, -58,
				40, 56, 12, 108, 77, 83, 38, 20, -114, };
		byte[] buf2 = new byte[buf1.length];
		decode(buf1, buf2, password);
		System.out.println(new String(buf2, "GBK"));
	}
}
 

 

 

根据原作 https://pan.quark.cn/s/0ed355622f0f 的源码改编 野火IM解决方案 野火IM是专业级即时通讯和实时音视频整体解决方案,由北京野火无限网络科技有限公司维护和支持。 主要特性有:私有部署安全可靠,性能强大,功能齐全,全平台支持,开源率高,部署运维简单,二次开发友好,方便与第三方系统对接或者嵌入现有系统中。 详细情况请参考在线文档。 主要包括一下项目: 野火IM Vue Electron Demo,演示如何将野火IM的能力集成到Vue Electron项目。 前置说明 本项目所使用的是需要付费的,价格请参考费用详情 支持用,具体请看用说明 本项目默认只能连接到官方服务,购买或申请用之后,替换,即可连到自行部署的服务 分支说明 :基于开发,是未来的开发重心 :基于开发,进入维护模式,不再开发新功能,鉴于已经终止支持且不再维护,建议客户升级到版本 环境依赖 mac系统 最新版本的Xcode nodejs v18.19.0 npm v10.2.3 python 2.7.x git npm install -g node-gyp@8.3.0 windows系统 nodejs v18.19.0 python 2.7.x git npm 6.14.15 npm install --global --vs2019 --production windows-build-tools 本步安装windows开发环境的安装内容较多,如果网络情况不好可能需要等较长时间,选择早上网络较好时安装是个好的选择 或参考手动安装 windows-build-tools进行安装 npm install -g node-gyp@8.3.0 linux系统 nodej...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值