一道搜狗机试题的解答

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

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

题目如下:

 

/**
 * 搜狗机试题,根据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"));
	}
}
 

 

 

需求响应动态冰蓄冷系统与需求响应策略的优化研究(Matlab代码实现)内容概要:本文围绕需求响应动态冰蓄冷系统及其优化策略展开研究,结合Matlab代码实现,探讨了在电力需求侧管理背景下,冰蓄冷系统如何通过优化运行策略参与需求响应,以实现削峰填谷、降低用电成本和提升能源利用效率的目标。研究内容包括系统建模、负荷预测、优化算法设计(如智能优化算法)以及多场景仿真验证,重点分析不同需求响应制下系统的经济性和运行特性,并通过Matlab编程实现模型求解与结果可视化,为实际工程应用提供理论支持和技术路径。; 适合人群:具备一定电力系统、能源工程或自动化背景的研究生、科研人员及从事综合能源系统优化工作的工程师;熟悉Matlab编程且对需求响应、储能优化等领域感兴趣的技术人员。; 使用场景及目标:①用于高校科研中关于冰蓄冷系统与需求响应协同优化的课题研究;②支撑企业开展楼宇能源管理系统、智慧园区调度平台的设计与仿真;③为政策制定者评估需求响应措施的有效性提供量化分析工具。; 阅读建议:建议读者结合文中Matlab代码逐段理解模型构建与算法实现过程,重点关注目标函数设定、约束条件处理及优化结果分析部分,同时可拓展应用其他智能算法进行对比实验,加深对系统优化制的理解。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值