一道搜狗机试题的解答

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

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

题目如下:

 

/**
 * 搜狗机试题,根据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/16a53f4bd595 小天才电话手表刷教程 — 基础篇 我们将为您简单的介绍小天才电话手表新型的简单刷以及玩法,如adb工具的使用,magisk的刷入等等。 我们会确保您看完此教程后能够对Android系统有一个最基本的认识,以及能够成功通过magisk root您的手表,并安装您需要的第三方软件。 ADB Android Debug Bridge,简称,在android developer的adb文档中是这么描述它的: 是一种多功能命令行工具,可让您与设备进行通信。 该命令有助于各种设备操作,例如安装和调应用程序。 提供对 Unix shell 的访问,您可以使用它在设备上运行各种命令。 它是一个客户端-服务器程序。 这听起来有些难以理解,因为您也没有必要去理解它,如果您对本文中的任何关键名词产生疑惑或兴趣,您都可以在搜索引擎中去搜索它,当然,我们会对其进行简单的解释:是一款在命令行中运行的,用于对Android设备进行调的工具,并拥有比一般用户以及程序更高的权限,所以,我们可以使用它对Android设备进行最基本的调操作。 而在小天才电话手表上启用它,您只需要这么做: - 打开拨号盘; - 输入; - 点按打开adb调选项。 其次是电脑上的Android SDK Platform-Tools的安装,此工具是 Android SDK 的组件。 它包括与 Android 平台交互的工具,主要由和构成,如果您接触过Android开发,必然会使用到它,因为它包含在Android Studio等IDE中,当然,您可以独立下载,在下方选择对应的版本即可: - Download SDK Platform...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值