聊聊jasypt的IVGenerator

本文主要研究一下jasypt的IVGenerator

IVGenerator

org/jasypt/salt/IVGenerator.java

/*** <p>* Common interface for all IV generators which can be applied in digest* or encryption operations.* </p>* <p>* <b>Every implementation of this interface must be thread-safe</b>.* </p>** @since 1.9.3** @author Alex Scal**/
public interface IVGenerator {/*** <p>* This method will be called for requesting the generation of a new* IV of the specified length.* </p>** @param length the requested length for the IV.* @return the generated IV.*/byte[] generateIV(int length);/*** <p>* Determines if the digests and encrypted messages created with a* specific IV generator will include (prepended) the unencrypted* IV itself, so that it can be used for matching and decryption* operations.* </p>* <p>* Generally, including the IV unencrypted in encryption results will* be mandatory for randomly generated IVs, or for those generated in a* non-predictable manner.* Otherwise, digest matching and decryption operations will always fail.* </p>** @return whether the plain (unencrypted) IV has to be included in*         encryption results or not.*/public boolean includePlainIVInEncryptionResults();}

IVGenerator定义了generateIV及includePlainIVInEncryptionResults方法,它有三个实现类,分别是NoOpIVGenerator、StringFixedIVGenerator、RandomIVGenerator

NoOpIVGenerator

public class NoOpIVGenerator implements IVGenerator {/*** Return IV with the specified byte length.** @param lengthBytes length in bytes.* @return the generated salt.*/ @Overridepublic byte[] generateIV(final int lengthBytes) {return null;}/*** As this salt generator provides a fixed IV, its inclusion* unencrypted in encryption results* is not necessary, and in fact not desirable (so that it remains hidden).** @return false*/@Overridepublic boolean includePlainIVInEncryptionResults() {return false;}}

主要用于解密旧版(不使用iv)的密码

StringFixedIVGenerator

org/jasypt/salt/StringFixedIVGenerator.java

public class StringFixedIVGenerator implements IVGenerator {private static final String DEFAULT_CHARSET = "UTF-8";private final String iv;private final String charset;private final byte[] ivBytes;/*** Creates a new instance of <tt>FixedStringIVGenerator</tt> using* the default charset.** @param iv the specified salt.*/public StringFixedIVGenerator(final String iv) {this(iv, null);}/*** Creates a new instance of <tt>FixedStringIVGenerator</tt>** @param iv the specified salt.* @param charset the specified charset*/public StringFixedIVGenerator(final String iv, final String charset) {super();CommonUtils.validateNotNull(iv, "IV cannot be set null");this.iv = iv;this.charset = (charset != null? charset : DEFAULT_CHARSET);try {this.ivBytes = this.iv.getBytes(this.charset);} catch (UnsupportedEncodingException e) {throw new EncryptionInitializationException("Invalid charset specified: " + this.charset);}}/*** Return IV with the specified byte length.** @param lengthBytes length in bytes.* @return the generated salt.*/public byte[] generateIV(final int lengthBytes) {if (this.ivBytes.length < lengthBytes) {throw new EncryptionInitializationException("Requested IV larger than set");}final byte[] generatedIV = new byte[lengthBytes];System.arraycopy(this.ivBytes, 0, generatedIV, 0, lengthBytes);return generatedIV;}/*** As this salt generator provides a fixed IV, its inclusion* unencrypted in encryption results* is not necessary, and in fact not desirable (so that it remains hidden).** @return false*/@Overridepublic boolean includePlainIVInEncryptionResults() {return false;}}

StringFixedIVGenerator根据固定的值和长度来生成iv,如果固定值的长度小于请求生成iv的长度则抛出EncryptionInitializationException,否则从前面取指定长度返回

RandomIVGenerator

org/jasypt/salt/RandomIVGenerator.java

public class RandomIVGenerator implements IVGenerator {/*** The default algorithm to be used for secure random number* generation: set to SHA1PRNG.*/private static final String GENERATOR_ALGORITHM = "SHA1PRNG";private final SecureRandom random;/*** Creates a new instance of <tt>RandomIVGenerator</tt> using the* default secure random number generation algorithm.*/public RandomIVGenerator() {this(GENERATOR_ALGORITHM);}/*** Creates a new instance of <tt>RandomIVGenerator</tt> specifying a* secure random number generation algorithm.** @since 1.9.3**/public RandomIVGenerator(String secureRandomAlgorithm) {super();try {this.random = SecureRandom.getInstance(secureRandomAlgorithm);} catch (NoSuchAlgorithmException e) {throw new EncryptionInitializationException(e);}}/*** Generate a random IV of the specified length in bytes.** @param length length in bytes.* @return the generated IV.*/@Overridepublic byte[] generateIV(int length) {byte[] iv = new byte[length / 8];random.nextBytes(iv);return iv;}/*** This IV generator needs the salt to be included unencrypted in* encryption results, because of its being random. This method will always* return true.** @return true*/@Overridepublic boolean includePlainIVInEncryptionResults() {return true;}
}

RandomIVGenerator可以根据传入的secureRandomAlgorithm来生成iv,如果不传默认是SHA1PRNG

PBES2Core

com/sun/crypto/provider/PBES2Core.java

protected void engineInit(int opmode, Key key,AlgorithmParameterSpec params,SecureRandom random)throws InvalidKeyException, InvalidAlgorithmParameterException {if (key == null) {throw new InvalidKeyException("Null key");}byte[] passwdBytes = key.getEncoded();char[] passwdChars = null;PBEKeySpec pbeSpec;try {if ((passwdBytes == null) ||!(key.getAlgorithm().regionMatches(true, 0, "PBE", 0, 3))) {throw new InvalidKeyException("Missing password");}// TBD: consolidate the salt, ic and IV parameter checks below// Extract salt and iteration count from the key, if presentif (key instanceof javax.crypto.interfaces.PBEKey) {salt = ((javax.crypto.interfaces.PBEKey)key).getSalt();if (salt != null && salt.length < 8) {throw new InvalidAlgorithmParameterException("Salt must be at least 8 bytes long");}iCount = ((javax.crypto.interfaces.PBEKey)key).getIterationCount();if (iCount == 0) {iCount = DEFAULT_COUNT;} else if (iCount < 0) {throw new InvalidAlgorithmParameterException("Iteration count must be a positive number");}}// Extract salt, iteration count and IV from the params, if presentif (params == null) {if (salt == null) {// generate random salt and use default iteration countsalt = new byte[DEFAULT_SALT_LENGTH];random.nextBytes(salt);iCount = DEFAULT_COUNT;}if ((opmode == Cipher.ENCRYPT_MODE) ||(opmode == Cipher.WRAP_MODE)) {// generate random IVbyte[] ivBytes = new byte[blkSize];random.nextBytes(ivBytes);ivSpec = new IvParameterSpec(ivBytes);}} else {if (!(params instanceof PBEParameterSpec)) {throw new InvalidAlgorithmParameterException("Wrong parameter type: PBE expected");}// salt and iteration count from the params take precedencebyte[] specSalt = ((PBEParameterSpec) params).getSalt();if (specSalt != null && specSalt.length < 8) {throw new InvalidAlgorithmParameterException("Salt must be at least 8 bytes long");}salt = specSalt;int specICount = ((PBEParameterSpec) params).getIterationCount();if (specICount == 0) {specICount = DEFAULT_COUNT;} else if (specICount < 0) {throw new InvalidAlgorithmParameterException("Iteration count must be a positive number");}iCount = specICount;AlgorithmParameterSpec specParams =((PBEParameterSpec) params).getParameterSpec();if (specParams != null) {if (specParams instanceof IvParameterSpec) {ivSpec = (IvParameterSpec)specParams;} else {throw new InvalidAlgorithmParameterException("Wrong parameter type: IV expected");}} else if ((opmode == Cipher.ENCRYPT_MODE) ||(opmode == Cipher.WRAP_MODE)) {// generate random IVbyte[] ivBytes = new byte[blkSize];random.nextBytes(ivBytes);ivSpec = new IvParameterSpec(ivBytes);} else {throw new InvalidAlgorithmParameterException("Missing parameter type: IV expected");}}passwdChars = new char[passwdBytes.length];for (int i = 0; i < passwdChars.length; i++)passwdChars[i] = (char) (passwdBytes[i] & 0x7f);pbeSpec = new PBEKeySpec(passwdChars, salt, iCount, keyLength);// password char[] was cloned in PBEKeySpec constructor,// so we can zero it out here} finally {if (passwdChars != null) Arrays.fill(passwdChars, '\0');if (passwdBytes != null) Arrays.fill(passwdBytes, (byte)0x00);}SecretKey s = null;try {s = kdf.engineGenerateSecret(pbeSpec);} catch (InvalidKeySpecException ikse) {InvalidKeyException ike =new InvalidKeyException("Cannot construct PBE key");ike.initCause(ikse);throw ike;}byte[] derivedKey = s.getEncoded();SecretKeySpec cipherKey = new SecretKeySpec(derivedKey, cipherAlgo);// initialize the underlying ciphercipher.init(opmode, cipherKey, ivSpec, random);}

PBES2Core的engineInit在PBEParameterSpec的PBEParameterSpec不为null但又不是IvParameterSpec类型时抛出InvalidAlgorithmParameterException(“Wrong parameter type: IV expected”)异常;如果是encrypt或者wrap模式,如果不传iv则会自动生成,而不是encrypt或者wrap模式(一般是decrypt模式),则在iv为null时抛出InvalidAlgorithmParameterException(“Missing parameter type: IV expected”)异常

小结

IVGenerator定义了generateIV及includePlainIVInEncryptionResults方法,它有三个实现类,分别是NoOpIVGenerator、StringFixedIVGenerator、RandomIVGenerator;对于PBE算法,如果iv不传,在decrypt模式会抛出InvalidAlgorithmParameterException(“Missing parameter type: IV expected”)异常。

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

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

相关文章

huggingface下载模型文件(基础入门版)

huggingface是一个网站&#xff0c;类似于github&#xff0c;上面拥有众多开源的模型、数据集等资料&#xff0c;人工智能爱好者可以很方便的上面获取需要的数据&#xff0c;也可以上传训练好的模型&#xff0c;制作的数据集等。本文只介绍下载模型的方法&#xff0c;适合新手入…

nodejs设置镜像

1、npm镜像地址配置 -- 查看 npm 安装目录 npm root -g-- 查看 npm 配置信息 npm config list-- 查询当前镜像配置 npm get registry-- 或者仅修改 npm 命令镜像 -- 设置为淘宝镜像 npm config set registry https://registry.npmmirror.com -- 修改为官方镜像 npm config set…

win | wireshark | 在win上跑lua脚本 解析数据包

前提说明&#xff1a;之前是在linux 系统上配置的&#xff0c;然后现在 在配置lua 脚本 &#xff0c;然后 分析指定协议 的 数据包 其实流程也比较简单&#xff0c;但 逻辑需要缕清来 首先要把你 预先准备的 xxx.lua 文件放到wireshark 的安装文件中&#xff0c;&#xff08;我…

deque容器

1 deque容器基本概念 功能&#xff1a; 双端数组&#xff0c;可以对头端进行插入删除操作 deque与vector区别&#xff1a; vector对于头部的插入删除效率低&#xff0c;数据量越大&#xff0c;效率越低deque相对而言&#xff0c;对头部的插入删除速度回比vector快vector访问…

js中如何使用可选函数参数

js是网络的核心技术之一。大多数网站都使用它&#xff0c;并且所有现代网络浏览器都支持它&#xff0c;而不需要插件。在本文中&#xff0c;我们将讨论不同的提示和技巧&#xff0c;它们将帮助您进行日常 JavaScript 开发。 在 JavaScript 编码中&#xff0c;您经常需要将函数…

python实现MQTT协议(发布者,订阅者,topic)

python实现MQTT协议 一、简介 1.1 概述 本文章针对物联网MQTT协议完成python实现 1.2 环境 Apache-apollo创建brokerPython实现发布者和订阅者 1.3 内容 MQTT协议架构说明 &#xff1a; 利用仿真服务体会 MQTT协议 针对MQTT协议进行测试 任务1&#xff1a;MQTT协议应…

理解React页面渲染原理,如何优化React性能?

React JSX转换成真实DOM过程 当使用React编写应用程序时&#xff0c;可以使用JSX语法来描述用户界面的结构。JSX是一种类似于HTML的语法&#xff0c;但实际上它是一种JavaScript的扩展&#xff0c;用于定义React元素。React元素描述了我们想要在界面上看到的内容和结构。 在运…

maven搭建spring项目

前提 安装jdk 安装maven 安装eclipse 创建maven项目 搭建spring项目 pom.xml <dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.4.RELEASE</version> </dependency&…

【java 入侵 C# 之路】1-入门

感谢 https://www.cnblogs.com/mww-NOTCOPY/p/12213373.html 百度百科 jvm对应clr java se runtime对应 .net framework&#xff0c; jdk对应 .net framework sdk&#xff0c; java对应C# .NET 是开发者平台&#xff0c;它包含开发环境、技术框架、社区论坛、服务支持等&…

学习pytorch8 土堆说卷积操作

土堆说卷积操作 官网debug torch版本只有nn 没有nn.functional代码执行结果 B站小土堆视频学习笔记 官网 https://pytorch.org/docs/stable/nn.html#convolution-layers 常用torch.nn, nn是对nn.functional的封装&#xff0c;使函数更易用。 卷积核从输入图像左上角&#xf…

Lambda表达式第二版

1、Lambda概述 Lambda表达式是JDK8开始后的一种新语法形式作用&#xff1a;简化匿名内部类的代码写法注意&#xff1a;Lambda表达式只能简化函数式 接口 的匿名内部类的写法形式 1.1、什么是函数式接口&#xff1f; 首先必须是接口、其次接口中有且仅有一个抽象方法的形式通常我…

Bito使用手册

第一步&#xff1a;输入网站 https://alpha.bito.co/bitoai/ 第二步&#xff1a;填写邮箱 第三步&#xff1a;登录邮箱&#xff0c;获取验证码 第四步&#xff1a;填写验证码 第五步&#xff1a;完成

【LeetCode-中等题】994. 腐烂的橘子

文章目录 题目方法一&#xff1a;bfs层序遍历 题目 该题值推荐用bfs&#xff0c;因为是一层一层的感染&#xff0c;而不是一条线走到底的那种&#xff0c;所以深度优先搜索不适合 方法一&#xff1a;bfs层序遍历 广度优先搜索&#xff0c;就是从起点出发&#xff0c;每次都尝…

我的Vim学习笔记(不定期更新)

2023年9月3日&#xff0c;周日上午 学到了啥就写啥&#xff0c;不定期更新 目录 字体 文件 标签页 分屏 调用系统命令 字体 设置字体大小 :set guifont字体:h字体大小 例如&#xff0c;:set guifontMonospace:h20 查询当前使用的字体和字体大小 :set guifont? 查看…

UG\NX CAM二次开发 查询工序所在的几何组TAG UF_OPER_ask_geom_group

文章作者:代工 来源网站:NX CAM二次开发专栏 简介: UG\NX CAM二次开发 查询工序所在的几何组TAG UF_OPER_ask_geom_group 效果: 代码: void MyClass::do_it() { int count=0;tag_t * objects;UF_UI_ONT_ask_selected_nodes(&count, &objects);for (in…

linux 下安装配置nexus

一、安装包获取方式 方式一 1、直接把下载好的安装包上传到服务器中 方式二 2、通过wget安装Nexus压缩包 ①、可以使用以下命令进行安装Nexus的最新版本 wget https://download.sonatype.com/nexus/3/latest-unix.tar.gz②、也可以点击官网复制想要下载的Nexus压缩包进行安装…

【Linux系列】离线安装openjdk17的rpm包

首发博客地址 首发博客地址[1] 系列文章地址[2] 视频地址[3] 准备 RPM 包 请从官网下载&#xff1a;https://www.oracle.com/java/technologies/downloads/#java17[4] 如需不限速下载&#xff0c;请关注【程序员朱永胜】并回复 1020 获取。 安装 yum localinstall jdk-17_linux…

C++智能指针之weak_ptr(保姆级教学)

目录 C智能指针之weak_ptr 概述 作用 本文涉及的所有程序 使用说明 weak_ptr的常规操作 lock(); use_count(); expired(); reset(); shared_ptr & weak_ptr 尺寸 智能指针结构框架 常见使用问题 shared_ptr多次引用同一数据&#xff0c;会导致两次释放同一内…

没有使用sniffer dongle在windows抓包蓝牙方法分享

网上很多文章都是介绍买一个sniffer dongle来抓蓝牙数据,嫌麻烦又费钱,目前找到一个好方法,不需要sniffer就可以抓蓝牙数据过程,现分享如下: (1)在我资源附件找到相关安装包或者查看如下链接 https://learn.microsoft.com/zh-cn/windows-hardware/drivers/bluetooth/testing-bt…

【WebRTC---源码篇】(二:二)视频源VideoSourceBase

作用 这个类继承自VideoSourceInterface<webrtc::VideoFrame>模板类,并且可以处理webrtc::VideoFrame class VideoSourceBase : public VideoSourceInterface<webrtc::VideoFrame> 重要成员变量 struct SinkPair {SinkPair(VideoSinkInterface<webrtc::Vid…