0x9C加密

news/2025/1/25 4:27:18/
/*** 0x9C加密* @param str* @return*/
public static String encrypt(String str) {byte[] strByteArr = str.getBytes();StringBuilder stringBuilder = new StringBuilder();for (int i = 0; i < strByteArr.length; i++) {int temp = strByteArr[i] ^ 0x9C;String hexStr = Integer.toHexString(temp);if (hexStr.length() < 2) {stringBuilder.append("0").append(hexStr);} else {stringBuilder.append(hexStr);}}return stringBuilder.toString();
}
/*** 0x9C解密* @param str* @return*/
public static String decipher(String str) {byte[] decipher = new byte[str.length() / 2];//char[] chars = stringBuilder.toString().toCharArray();for (int i = 0; i < decipher.length; i++) {decipher[i] = (byte)(0x9C ^ Integer.parseInt(str.substring(i * 2, i * 2 + 2), 16));//int position = 2 * i;//decipher[i] = (byte) (charToByte(chars[position]) << 4 | charToByte(chars[position + 1]));}String strDecipher = new String(decipher);return strDecipher;
}


http://www.ppmy.cn/news/766093.html

相关文章

沟通时发生错误的远程主机。错误代码为0 x800703e3。

今天在服务器上发现好多如下报错的问题&#xff0c;在网上没有找到是什么原因&#xff0c;于是自己搞了一下&#xff0c;说下自己发现的原因 日志名称: Application 来源: ASP.NET2.0.50727.0 日期: 2013-3-1514:49:26 事件 ID: 130…

错误0x800703e3服务器传输文件,错误0xc000012f,错误状态0xc0000006

WIN10专业版更新出现Microsoft - Other hardware - Xbox Wireless Adapter for Windows - 错误 0x800703e3 该怎么办&#xff1f;当我们遇到了在win10系统中需要更新xbox游戏手柄驱动的时候遇到了无法正常更新更新失败的问题&#xff0c;通常可以通过下面winwin7小编介绍的操作…

0x80092004:Windows Server上的.NET Framework安装错误

若要更正此0x80092004 (CRYPT_E_NOT_FOUND)错误&#xff0c;您必须从Microsoft更新目录中手动下载.NET Framework更新包。 转到https://www.catalog.update.microsoft.com并搜索KB4340558 ;下载适用于Windows 8.1和Server 2012 R2 x64的.NET Framework 3.5、4.5.2、4.6、4.6.1…

windows 环境下 0x色彩对应表

RGB颜色查询对照表 0xFFFFFF 0xFFFFF0 0xFFFFE0 0xFFFF00 0xFFFAFA 0xFFFAF0 0xFFFACD 0xFFF8DC 0xFFF68F 0xFFF5EE 0xFFF0F5 0xFFEFDB 0xFFEFD5 0xFFEC8B 0xFFEBCD 0xFFE7BA 0xFFE4E1 0xFFE4C4 0xFFE4B5 0xFFE1FF 0xFFDEAD 0xFFDAB9 0xFFD700 0xFFD39B 0xFFC1C1 0xFFC125 0xFF…

SDL_UpdateTexture+ffmpeg播放YUV数据程序异常崩溃:VM Regions Near 0x113e3d000:MALLOC_LARGE

异常代码&#xff1a; #include <iostream> #include <map> #include <pthread.h>extern "C" { #include <libavformat/avformat.h> #include <libavcodec/avcodec.h> #include <libswscale/swscale.h> #include <SDL2/SDL.…

windows 0xc00002e3错误解决方法

** 系统版本&#xff1a;server 2012 R2 问题描述&#xff1a; 客户机房断电&#xff0c;导致系统文件错误&#xff0c;服务器无法正常启动 没有原装光盘&#xff0c;无法进行修复 最后一次正确配置也无法启动 报错截图&#xff1a; 重装系统业务会受到很大影响&#xff0c;该…

LeetCode 报错AddressSanitizer: SEGV on unknown address (pc 0x0000003445e3 bp 0x7ffdb86b99e0 sp 0x7ffdb

这种错误就是数组越界了。 我这里例子里即使递归结束了&#xff0c;没有直接return&#xff0c;结果计算row和col的时候就越界了。&#xff0c;要把return &#xff1b;取消注释

Windows10 无法连接到局域网内打印机,并提示0x00000533错误

连接共享打印机时提示Windows 无法连接到打印机&#xff0c; 错误代码为0x0000011b。 错误现象&#xff1a; 错误提示&#xff08;柯尼卡美能达&#xff09; 处理方法&#xff1a; 1、柯尼卡美能达官方驱动文件下载&#xff0c;地址&#xff1a;https://www.konicaminolta.…