摘要: ECDSA签名算法 package com.albedo.security; /** * DSA 加解密实现 */ public class ECDSAUtils extends Base { //字符编码 public static final String ALGORITHM = "EC"; p 阅读全文
posted @ 2020-09-14 16:47 重设代码的天空 阅读(2052) 评论(0) 推荐(0) 编辑
摘要: DSA签名 package com.albedo.security; /** * DSA 加解密实现 */ public class DSAUtils extends Base { //字符编码 public static final String ALGORITHM = "DSA"; public 阅读全文
posted @ 2020-09-14 16:46 重设代码的天空 阅读(934) 评论(0) 推荐(0) 编辑
摘要: RSA加解密代码: package com.albedo.security; import com.albedo.num.ByteUtils; import javax.crypto.Cipher; import java.security.KeyFactory; import java.secur 阅读全文
posted @ 2020-09-14 16:45 重设代码的天空 阅读(580) 评论(0) 推荐(0) 编辑