Java RC4加密算法

一、RC4加密算法

在密码学中,RC4(来自Rivest Cipher 4的缩写)是一种流加密算法,密钥长度可变。它加解密使用相同的密钥,因此也属于对称加密算法。

百度百科 - RC4:https://baike.baidu.com/item/RC4/3454548?fr=ge_ala

二、Rc4Utils工具类

1、方式一

下面 Rc4Utils 提供了针对文本内容、字节数组内容的加解密实现。使用加密算法实现。

import org.apache.commons.codec.binary.Base64;import java.nio.charset.StandardCharsets;
import java.util.Arrays;public class Rc4Utils {/*** 对文本内容进行加密.** @param plainText 待加密明文内容.* @param rc4Key    RC4密钥.* @return 加密的密文.*/public static String encodeText(String plainText, String rc4Key) {byte[] plainBytes = plainText.getBytes(StandardCharsets.UTF_8);byte[] cipherBytes = rc4EnOrDecode(plainBytes, rc4Key);return Base64.encodeBase64String(cipherBytes);}/*** 对文本密文进行解密.** @param cipherText 待解密密文.* @param rc4Key     RC4密钥.* @return 解密的明文.*/public static String decodeText(String cipherText, String rc4Key) {byte[] cipherBytes = Base64.decodeBase64(cipherText);byte[] plainBytes = rc4EnOrDecode(cipherBytes, rc4Key);return new String(plainBytes, StandardCharsets.UTF_8);}/*** 对字节数组内容进行加密.** @param plainBytes 待加密明文内容.* @param rc4Key     RC4密钥.* @return 加密的密文.*/public static byte[] encodeBytes(byte[] plainBytes, String rc4Key) {byte[] cipherBytes = rc4EnOrDecode(plainBytes, rc4Key);return cipherBytes;}/*** 对字节数组密文进行解密.** @param cipherBytes 待解密密文.* @param rc4Key      RC4密钥.* @return 解密的明文.*/public static byte[] decodeBytes(byte[] cipherBytes, String rc4Key) {byte[] plainBytes = rc4EnOrDecode(cipherBytes, rc4Key);return plainBytes;}/*** 初始化RC4密钥.** @param rc4Key RC4密钥.* @return 初始化后的密钥.* @throws Exception 可能的异常.*/private static byte[] rc4InitKey(String rc4Key) {byte[] keyBytes = null;byte[] keyState = null;int indexFirst = 0;int indexSecond = 0;// 变量初始化.keyBytes = rc4Key.getBytes(StandardCharsets.UTF_8);keyState = new byte[256];for (int i = 0; i < 256; i++) {keyState[i] = (byte) i;}// 进行初始化.if (keyBytes == null || keyBytes.length == 0) {return null;}for (int i = 0; i < 256; i++) {indexSecond = ((keyBytes[indexFirst] & 0xff) + (keyState[i] & 0xff) + indexSecond) & 0xff;byte tmp = keyState[i];keyState[i] = keyState[indexSecond];keyState[indexSecond] = tmp;indexFirst = (indexFirst + 1) % keyBytes.length;}return keyState;}/*** RC4算法进行加解密.** @param bytes  待处理内容.* @param rc4Key RC4密钥.* @return 处理后结果内容.*/public static byte[] rc4EnOrDecode(byte[] bytes, String rc4Key) {int x = 0;int y = 0;byte key[] = rc4InitKey(rc4Key);int xorIndex;byte[] result = new byte[bytes.length];// 数据加密.for (int i = 0; i < bytes.length; i++) {x = (x + 1) & 0xff;y = ((key[x] & 0xff) + y) & 0xff;byte tmp = key[x];key[x] = key[y];key[y] = tmp;xorIndex = ((key[x] & 0xff) + (key[y] & 0xff)) & 0xff;result[i] = (byte) (bytes[i] ^ key[xorIndex]);}return result;}public static void main(String[] args) throws Exception {//String rc4Key = "1234567890";String rc4Key = "78077e1be9204c21ac03cda1e6ea7a01";String plainText = "This is 一段明文内容 123 !";String cipherText = null;// 文本加解密测试.System.out.println("----------------------- 文本加解密测试 -------------------------");System.out.println("明文:" + plainText);cipherText = Rc4Utils.encodeText(plainText, rc4Key);System.out.println("密文:" + cipherText);plainText = Rc4Utils.decodeText(cipherText, rc4Key);System.out.println("解密明文:" + plainText);System.out.println();System.out.println("----------------------- 字节数组加解密测试 -------------------------");byte[] plainBytes = plainText.getBytes("UTF-8");byte[] cipherBytes = null;System.out.println("明文:" + Arrays.toString(plainBytes));cipherBytes = Rc4Utils.encodeBytes(plainBytes, rc4Key);System.out.println("密文:" + Arrays.toString(cipherBytes));plainBytes = Rc4Utils.decodeBytes(cipherBytes, rc4Key);System.out.println("解密明文:" + Arrays.toString(plainBytes));System.out.println();}}

在这里插入图片描述

2、方式2

下面 Rc4Utils2 提供了针对文本内容的加解密实现。使用 Java封装好的类实现。

import lombok.extern.slf4j.Slf4j;import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;
import java.util.Base64;@Slf4j
public class Rc4Utils2 {/*** 对文本内容进行加密.** @param plainText 待加密明文内容.* @param rc4Key    RC4密钥.* @return 加密的密文.*/public static String encodeText(String plainText, String rc4Key) {String result = "";try {Cipher cipher = Cipher.getInstance("RC4");SecretKeySpec key = new SecretKeySpec(rc4Key.getBytes(StandardCharsets.UTF_8), "RC4");cipher.init(Cipher.DECRYPT_MODE, key);byte[] encryptedBytes = cipher.doFinal(plainText.getBytes(StandardCharsets.UTF_8));result = Base64.getEncoder().encodeToString(encryptedBytes);} catch (Throwable e) {log.error(" 加密 encodeText方法异常,e={}", e);e.printStackTrace();}return result;}/*** 对文本密文进行解密.** @param cipherText 待解密密文.* @param rc4Key     RC4密钥.* @return 解密的明文.*/public static String decodeText(String cipherText, String rc4Key) {String result = "";try {Cipher cipher = Cipher.getInstance("RC4");SecretKeySpec key = new SecretKeySpec(rc4Key.getBytes(StandardCharsets.UTF_8), "RC4");cipher.init(Cipher.DECRYPT_MODE, key);byte[] bytesA = Base64.getDecoder().decode(cipherText.getBytes(StandardCharsets.UTF_8));result = new String(cipher.update(bytesA), StandardCharsets.UTF_8);} catch (Throwable e) {log.error(" 解密 decodeText方法异常,e={}", e);e.printStackTrace();}return result;}public static void main(String[] args) {/*** rc4Key有长度限制* java.security.InvalidKeyException: Illegal key size or default parameters*///String rc4Key = "78077e1be9204c21ac03cda1e6ea7a01";String rc4Key = "1234567890";String plainText = "This is 一段明文内容 123 !";String cipherText = null;// 文本加解密测试.System.out.println("----------------------- 文本加解密测试 -------------------------");System.out.println("明文:" + plainText);cipherText = Rc4Utils2.encodeText(plainText, rc4Key);System.out.println("密文:" + cipherText);plainText = Rc4Utils2.decodeText(cipherText, rc4Key);System.out.println("解密明文:" + plainText);System.out.println();}}

在这里插入图片描述

参考文章:

  • RC4 加密算法:https://blog.51cto.com/u_15301988/3089450

– 求知若饥,虚心若愚。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/438568.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Netty的高级用法(一)

前言 我们直到在网络通信中客户端和服务端之间除了要传输数据外&#xff0c;还会进行简单的心跳应答通信&#xff0c;使得客户端和服务端的连接处于一种活跃状态&#xff0c;那么客户端可以发送ONE_WAY和TWO_WAY两种方式的处理&#xff0c;而服务端在处理这两种类型的数据时会…

Pyecharts魔法笔:探索多彩K线图的绘制与定制

标题&#xff1a;Pyecharts绘制多种炫酷K线图参数说明代码实战 在数据可视化领域&#xff0c;K线图是股票市场中常用的一种图表类型&#xff0c;用于展示一段时间内的开盘价、收盘价、最高价和最低价。Pyecharts是一个强大的Python可视化库&#xff0c;支持绘制各种图表&#…

一文讲透!CRM客户管理系统实施过程中的问题?

本文将为大家讲解&#xff1a;一文讲透&#xff01;CRM客户管理系统实施过程中的问题有哪些&#xff1f; CRM客户管理系统有什么缺点&#xff1f;比起CRM的缺点&#xff0c;为了企业能不断发展&#xff0c;企业更有必要知悉在系统实施过程中存在的问题&#xff0c;反思自身存在…

【第十九课】BFS:广度优先搜索 (acwing-844走迷宫 / 含过程演示的视频推荐 / c++代码)

目录 BFS思路 可能需要看的视频和博客 代码如下 输出最短路径途径点 关于这种类型的题&#xff0c;我是有点印象的。。。当时蓝桥杯校内选拔就有这种题&#xff0c;当时还没学算法hhh BFS思路 对应上图来理解BFS的方式还是很容易的&#xff0c;只是如何在题目中应用BFS的思…

shell脚本——条件语句

目录 一、条件语句 1、test命令测试条件表达式 2、整数数值比较 3、字符串比较 4、逻辑测试&#xff08;短路运算&#xff09; 5、双中括号 二、if语句 1、 分支结构 1.1 单分支结果 1.2 双分支 1.3 多分支 2、case 一、条件语句 条件测试&#xff1a;判断某需求是…

【HarmonyOS应用开发】UIAbility实践第二部分(六)

内容接上篇 【HarmonyOS应用开发】UIAbility实践第一部分&#xff08;五&#xff09; 末尾含示例源码 三、UIAbility的生命周期 当用户浏览、切换和返回到对应应用的时候&#xff0c;应用中的UIAbility实例会在其生命周期的不同状态之间转换。 UIAbility类提供了很多回调&a…

[C语言][C++][时间复杂度详解分析]二分查找——杨氏矩阵查找数字详解!!!

一&#xff0c;题目 遇到的一道算法题&#xff1a; 1&#xff0c;已知有一个数字矩阵&#xff08;row行&#xff0c;col列&#xff09;&#xff0c;矩阵的每行 从左到右 递增&#xff0c;每列 从上到下 递增。 2&#xff0c;现输入一个数字 num &#xff0c;判断数字矩阵中…

玩转WEB接口之三续篇【HTTPS证书申请 - nginx验证】

文章目录 一&#xff0c; 概述二&#xff0c;nginx下载三&#xff0c;访问域名1. 做域名映射2. 运行nginx并通过域名访问 四&#xff0c;配置SSL证书1. 配置证书文件2. nginx 添加证书文件 五、运行并验证1. 测试、重新加载2. https访问 一&#xff0c; 概述 接上篇 玩转WEB接…

深度强化学习(王树森)笔记06

深度强化学习&#xff08;DRL&#xff09; 本文是学习笔记&#xff0c;如有侵权&#xff0c;请联系删除。本文在ChatGPT辅助下完成。 参考链接 Deep Reinforcement Learning官方链接&#xff1a;https://github.com/wangshusen/DRL 源代码链接&#xff1a;https://github.c…

在Java中如何优雅使用正则表达式?

在Java中如何优雅使用正则表达式&#xff1f; 一、正则表达式的基本概念与用途 1.1 正则表达式的简介 正则表达式&#xff0c;又称规则表达式。&#xff08;英语&#xff1a;Regular Expression&#xff0c;在代码中常简写为regex、regexp或RE&#xff09;&#xff0c;是计算…

SpringBoot引入主盘探活定时任务

主盘探活通常是指检查存储设备&#xff08;例如硬盘&#xff09;是否可读写&#xff0c;但在Java中并没有直接针对硬件级别的磁盘探活API。然而&#xff0c;我们可以模拟一个场景&#xff0c;即检查某个目录或文件是否可以被Java程序正常读写&#xff0c;以此作为主盘活跃的一个…

网络防御安全知识(第三版)

配置黑洞路由 --- 黑洞路由即空接口路由&#xff0c;在NAT地址池中的地址&#xff0c;建议配置达到这个地址指 向空接口的路由&#xff0c;不然&#xff0c;在特定环境下会出现环路。&#xff08;主要针对地址池中的地址和出接口地址 不再同一个网段中的场景。&#xff09; …