All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.crypto.asymmetric.AsymmetricCrypto Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.crypto.asymmetric;

import org.dromara.hutool.core.codec.binary.Base64;
import org.dromara.hutool.core.io.stream.FastByteArrayOutputStream;
import org.dromara.hutool.crypto.*;
import org.dromara.hutool.crypto.symmetric.SymmetricAlgorithm;

import java.io.IOException;
import java.security.*;
import java.security.spec.AlgorithmParameterSpec;

/**
 * 非对称加密算法
 *
 * 
 * 1、签名:使用私钥加密,公钥解密。
 * 用于让所有公钥所有者验证私钥所有者的身份并且用来防止私钥所有者发布的内容被篡改,但是不用来保证内容不被他人获得。
 *
 * 2、加密:用公钥加密,私钥解密。
 * 用于向公钥所有者发布信息,这个信息可能被他人篡改,但是无法被他人获得。
 * 
* * @author Looly */ public class AsymmetricCrypto extends AbstractAsymmetricCrypto { private static final long serialVersionUID = 1L; /** * Cipher负责完成加密或解密工作 */ protected Cipher cipher; /** * 加密的块大小 */ protected int encryptBlockSize = -1; /** * 解密的块大小 */ protected int decryptBlockSize = -1; /** * 算法参数 */ private AlgorithmParameterSpec algorithmParameterSpec; /** * 自定义随机数 */ private SecureRandom random; // region ----- Constructor /** * 构造,创建新的私钥公钥对 * * @param algorithm {@link SymmetricAlgorithm} */ @SuppressWarnings("RedundantCast") public AsymmetricCrypto(final AsymmetricAlgorithm algorithm) { this(algorithm, (byte[]) null, (byte[]) null); } /** * 构造,创建新的私钥公钥对 * * @param algorithm 算法 */ @SuppressWarnings("RedundantCast") public AsymmetricCrypto(final String algorithm) { this(algorithm, (byte[]) null, (byte[]) null); } /** * 构造 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm {@link SymmetricAlgorithm} * @param privateKeyStr 私钥Hex或Base64表示 * @param publicKeyStr 公钥Hex或Base64表示 */ public AsymmetricCrypto(final AsymmetricAlgorithm algorithm, final String privateKeyStr, final String publicKeyStr) { this(algorithm.getValue(), SecureUtil.decode(privateKeyStr), SecureUtil.decode(publicKeyStr)); } /** * 构造 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm {@link SymmetricAlgorithm} * @param privateKey 私钥 * @param publicKey 公钥 */ public AsymmetricCrypto(final AsymmetricAlgorithm algorithm, final byte[] privateKey, final byte[] publicKey) { this(algorithm.getValue(), privateKey, publicKey); } /** * 构造 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm {@link SymmetricAlgorithm} * @param privateKey 私钥 * @param publicKey 公钥 * @since 3.1.1 */ public AsymmetricCrypto(final AsymmetricAlgorithm algorithm, final PrivateKey privateKey, final PublicKey publicKey) { this(algorithm.getValue(), new KeyPair(publicKey, privateKey)); } /** * 构造 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm 非对称加密算法 * @param privateKeyBase64 私钥Base64 * @param publicKeyBase64 公钥Base64 */ public AsymmetricCrypto(final String algorithm, final String privateKeyBase64, final String publicKeyBase64) { this(algorithm, Base64.decode(privateKeyBase64), Base64.decode(publicKeyBase64)); } /** * 构造 *

* 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm 算法 * @param privateKey 私钥 * @param publicKey 公钥 */ public AsymmetricCrypto(final String algorithm, final byte[] privateKey, final byte[] publicKey) { this(algorithm, // new KeyPair( KeyUtil.generatePublicKey(algorithm, publicKey), KeyUtil.generatePrivateKey(algorithm, privateKey) )); } /** * 构造 *

* 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm 算法 * @param keyPair 密钥对,包含私钥和公钥,如果为{@code null},则生成随机键值对 */ public AsymmetricCrypto(final String algorithm, final KeyPair keyPair) { super(algorithm, keyPair); } // endregion /** * 获取加密块大小 * * @return 加密块大小 */ public int getEncryptBlockSize() { return encryptBlockSize; } /** * 设置加密块大小 * * @param encryptBlockSize 加密块大小 */ public void setEncryptBlockSize(final int encryptBlockSize) { this.encryptBlockSize = encryptBlockSize; } /** * 获取解密块大小 * * @return 解密块大小 */ public int getDecryptBlockSize() { return decryptBlockSize; } /** * 设置解密块大小 * * @param decryptBlockSize 解密块大小 */ public void setDecryptBlockSize(final int decryptBlockSize) { this.decryptBlockSize = decryptBlockSize; } /** * 获取{@link AlgorithmParameterSpec}
* 在某些算法中,需要特别的参数,例如在ECIES中,此处为IESParameterSpec * * @return {@link AlgorithmParameterSpec} * @since 5.4.3 */ public AlgorithmParameterSpec getAlgorithmParameterSpec() { return this.algorithmParameterSpec; } /** * 设置{@link AlgorithmParameterSpec}
* 在某些算法中,需要特别的参数,例如在ECIES中,此处为IESParameterSpec * * @param algorithmParameterSpec {@link AlgorithmParameterSpec} * @return this */ public AsymmetricCrypto setAlgorithmParameterSpec(final AlgorithmParameterSpec algorithmParameterSpec) { this.algorithmParameterSpec = algorithmParameterSpec; return this; } /** * 设置随机数生成器,可自定义随机数种子 * * @param random 随机数生成器,可自定义随机数种子 * @return this * @since 5.7.17 */ public AsymmetricCrypto setRandom(final SecureRandom random) { this.random = random; return this; } @Override public AsymmetricCrypto init(final String algorithm, final KeyPair keyPair) { super.init(algorithm, keyPair); initCipher(); return this; } // --------------------------------------------------------------------------------- Encrypt @Override public byte[] encrypt(final byte[] data, final KeyType keyType) { final Key key = getKeyByType(keyType); lock.lock(); try { final Cipher cipher = initMode(CipherMode.ENCRYPT, key); if (this.encryptBlockSize < 0) { // 在引入BC库情况下,自动获取块大小 final int blockSize = cipher.getBlockSize(); if (blockSize > 0) { this.encryptBlockSize = blockSize; } } return doFinal(data, this.encryptBlockSize < 0 ? data.length : this.encryptBlockSize); } catch (final Exception e) { throw new CryptoException(e); } finally { lock.unlock(); } } // --------------------------------------------------------------------------------- Decrypt @Override public byte[] decrypt(final byte[] data, final KeyType keyType) { final Key key = getKeyByType(keyType); lock.lock(); try { final Cipher cipher = initMode(CipherMode.DECRYPT, key); if (this.decryptBlockSize < 0) { // 在引入BC库情况下,自动获取块大小 final int blockSize = cipher.getBlockSize(); if (blockSize > 0) { this.decryptBlockSize = blockSize; } } return doFinal(data, this.decryptBlockSize < 0 ? data.length : this.decryptBlockSize); } catch (final Exception e) { throw new CryptoException(e); } finally { lock.unlock(); } } // --------------------------------------------------------------------------------- Getters and Setters /** * 获得加密或解密器 * * @return 加密或解密 * @since 5.4.3 */ public Cipher getCipher() { return this.cipher; } /** * 初始化{@link Cipher},默认尝试加载BC库 * * @since 4.5.2 */ protected void initCipher() { this.cipher = new JceCipher(this.algorithm); } /** * 加密或解密 * * @param data 被加密或解密的内容数据 * @param maxBlockSize 最大块(分段)大小 * @return 加密或解密后的数据 * @throws IOException IO异常,不会被触发 */ private byte[] doFinal(final byte[] data, final int maxBlockSize) throws IOException { // 不足分段 if (data.length <= maxBlockSize) { return this.cipher.processFinal(data, 0, data.length); } // 分段解密 return doFinalWithBlock(data, maxBlockSize); } /** * 分段加密或解密 * * @param data 数据 * @param maxBlockSize 最大分段的段大小,不能为小于1 * @return 加密或解密后的数据 */ @SuppressWarnings("resource") private byte[] doFinalWithBlock(final byte[] data, final int maxBlockSize) throws IOException { final int dataLength = data.length; final FastByteArrayOutputStream out = new FastByteArrayOutputStream(); int offSet = 0; // 剩余长度 int remainLength = dataLength; int blockSize; // 对数据分段处理 while (remainLength > 0) { blockSize = Math.min(remainLength, maxBlockSize); out.write(this.cipher.processFinal(data, offSet, blockSize)); offSet += blockSize; remainLength = dataLength - offSet; } return out.toByteArray(); } /** * 初始化{@link JceCipher}的模式,如加密模式或解密模式 * * @param mode 模式,可选{@link CipherMode#ENCRYPT}或者{@link CipherMode#DECRYPT} * @param key 密钥 * @return {@link JceCipher} */ private Cipher initMode(final CipherMode mode, final Key key) { final Cipher cipher = this.cipher; cipher.init(mode, new JceCipher.JceParameters(key, this.algorithmParameterSpec, this.random)); return cipher; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy