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

cn.luues.tool.crypto.asymmetric.BaseAsymmetric Maven / Gradle / Ivy

There is a newer version: 2.0.1.RELEASE
Show newest version
package cn.luues.tool.crypto.asymmetric;

import cn.luues.tool.core.codec.Base64;
import cn.luues.tool.core.lang.Assert;
import cn.luues.tool.crypto.CryptoException;
import cn.luues.tool.crypto.KeyUtil;

import java.security.Key;
import java.security.KeyPair;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * 非对称基础,提供锁、私钥和公钥的持有
 *
 * @author Looly
 * @since 3.3.0
 */
public class BaseAsymmetric> {

	/**
	 * 算法
	 */
	protected String algorithm;
	/**
	 * 公钥
	 */
	protected PublicKey publicKey;
	/**
	 * 私钥
	 */
	protected PrivateKey privateKey;
	/**
	 * 锁
	 */
	protected final Lock lock = new ReentrantLock();

	// ------------------------------------------------------------------ Constructor start

	/**
	 * 构造
	 * 

* 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密或者解密 * * @param algorithm 算法 * @param privateKey 私钥 * @param publicKey 公钥 * @since 3.1.1 */ public BaseAsymmetric(String algorithm, PrivateKey privateKey, PublicKey publicKey) { init(algorithm, privateKey, publicKey); } // ------------------------------------------------------------------ Constructor end /** * 初始化
* 私钥和公钥同时为空时生成一对新的私钥和公钥
* 私钥和公钥可以单独传入一个,如此则只能使用此钥匙来做加密(签名)或者解密(校验) * * @param algorithm 算法 * @param privateKey 私钥 * @param publicKey 公钥 * @return this */ @SuppressWarnings("unchecked") protected T init(String algorithm, PrivateKey privateKey, PublicKey publicKey) { this.algorithm = algorithm; if (null == privateKey && null == publicKey) { initKeys(); } else { if (null != privateKey) { this.privateKey = privateKey; } if (null != publicKey) { this.publicKey = publicKey; } } return (T) this; } /** * 生成公钥和私钥 * * @return this */ @SuppressWarnings("unchecked") public T initKeys() { KeyPair keyPair = KeyUtil.generateKeyPair(this.algorithm); this.publicKey = keyPair.getPublic(); this.privateKey = keyPair.getPrivate(); return (T) this; } // --------------------------------------------------------------------------------- Getters and Setters /** * 获得公钥 * * @return 获得公钥 */ public PublicKey getPublicKey() { return this.publicKey; } /** * 获得公钥 * * @return 获得公钥 */ public String getPublicKeyBase64() { final PublicKey publicKey = getPublicKey(); return (null == publicKey) ? null : Base64.encode(publicKey.getEncoded()); } /** * 设置公钥 * * @param publicKey 公钥 * @return this */ @SuppressWarnings("unchecked") public T setPublicKey(PublicKey publicKey) { this.publicKey = publicKey; return (T) this; } /** * 获得私钥 * * @return 获得私钥 */ public PrivateKey getPrivateKey() { return this.privateKey; } /** * 获得私钥 * * @return 获得私钥 */ public String getPrivateKeyBase64() { final PrivateKey privateKey = getPrivateKey(); return (null == privateKey) ? null : Base64.encode(privateKey.getEncoded()); } /** * 设置私钥 * * @param privateKey 私钥 * @return this */ @SuppressWarnings("unchecked") public T setPrivateKey(PrivateKey privateKey) { this.privateKey = privateKey; return (T) this; } /** * 设置密钥,可以是公钥{@link PublicKey}或者私钥{@link PrivateKey} * * @param key 密钥,可以是公钥{@link PublicKey}或者私钥{@link PrivateKey} * @return this * @since 5.2.0 */ public T setKey(Key key) { Assert.notNull(key, "key must be not null !"); if (key instanceof PublicKey) { return setPublicKey((PublicKey) key); } else if (key instanceof PrivateKey) { return setPrivateKey((PrivateKey) key); } throw new CryptoException("Unsupported key type: {}", key.getClass()); } /** * 根据密钥类型获得相应密钥 * * @param type 类型 {@link KeyType} * @return {@link Key} */ protected Key getKeyByType(KeyType type) { switch (type) { case PrivateKey: if (null == this.privateKey) { throw new NullPointerException("Private key must not null when use it !"); } return this.privateKey; case PublicKey: if (null == this.publicKey) { throw new NullPointerException("Public key must not null when use it !"); } return this.publicKey; } throw new CryptoException("Unsupported key type: " + type); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy