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

org.dromara.hutool.crypto.asymmetric.AsymmetricDecryptor 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.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.util.CharsetUtil;
import org.dromara.hutool.crypto.SecureUtil;

import java.io.InputStream;
import java.nio.charset.Charset;

/**
 * 非对称解密器接口,提供:
 * 
    *
  • 从bytes解密
  • *
  • 从Hex(16进制)解密
  • *
  • 从Base64解密
  • *
* * @author looly * @since 5.7.12 */ public interface AsymmetricDecryptor { /** * 解密 * * @param bytes 被解密的bytes * @param keyType 私钥或公钥 {@link KeyType} * @return 解密后的bytes */ byte[] decrypt(byte[] bytes, KeyType keyType); /** * 解密 * * @param data 被解密的bytes * @param keyType 私钥或公钥 {@link KeyType} * @return 解密后的bytes * @throws IORuntimeException IO异常 */ default byte[] decrypt(final InputStream data, final KeyType keyType) throws IORuntimeException { return decrypt(IoUtil.readBytes(data), keyType); } /** * 从Hex或Base64字符串解密,编码为UTF-8格式 * * @param data Hex(16进制)或Base64字符串 * @param keyType 私钥或公钥 {@link KeyType} * @return 解密后的bytes * @since 4.5.2 */ default byte[] decrypt(final String data, final KeyType keyType) { return decrypt(SecureUtil.decode(data), keyType); } /** * 解密为字符串,密文需为Hex(16进制)或Base64字符串 * * @param data 数据,Hex(16进制)或Base64字符串 * @param keyType 密钥类型 * @param charset 加密前编码 * @return 解密后的密文 * @since 4.5.2 */ default String decryptStr(final String data, final KeyType keyType, final Charset charset) { return StrUtil.str(decrypt(data, keyType), charset); } /** * 解密为字符串,密文需为Hex(16进制)或Base64字符串 * * @param data 数据,Hex(16进制)或Base64字符串 * @param keyType 密钥类型 * @return 解密后的密文 * @since 4.5.2 */ default String decryptStr(final String data, final KeyType keyType) { return decryptStr(data, keyType, CharsetUtil.UTF_8); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy