# cipher-utils **Repository Path**: lonqiebai/cipher-utils ## Basic Information - **Project Name**: cipher-utils - **Description**: 加密解密工具库,包含大部分对称加密、非对称加密、摘要/杂凑算法、hash算法以及各种编码算法 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-04-23 - **Last Updated**: 2023-04-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 加密解密工具类 ## 包含加密算法 * Base32 * Base64 * BinaryCodec * Hex * Hmac * MD5 * SHA * RSA * AES * Blowfish * DES * DESede * RC4 * SM2 * SM3 * SM4 ## Maven依赖: ```xml com.github.duanxinyuan util-cipher ``` ### 非对称加密 * RSAUtils(国际非对称加密标准) * SM2Utils(椭圆曲线公钥密码算法,国内非对称加密标准) ### 对称加密 * AESUtils(高级加密标准(Advanced Encryption Standard)) * BlowfishUtils * DESUtils(美国数据加密标准(Data Encryption Standard)) * DESedeUtils(三重DES) * RC4Utils * SM4Utils(无线局域网标准的分组数据算法,国密对称加密) ### 散列/摘要/杂凑 * HmacUtils * MD5Utils * SHAUtils * SM3Utils(国密杂凑算法) ### 依赖的其他工具类 Base32 Base64 BinaryCodec Hex