java crypto下载_java crypto

hMac

"HmacMD5","HmacSHA1", "HmacSHA256", "HmacSHA384", "HmacSHA512"

public void testHMac(String filePath, String key, String algo) throws Exception{

FileInputStream fis = new FileInputStream(new File(filePath));

try{

SecretKeySpec signingKey = new SecretKeySpec(key.getBytes(), algo);

Mac mac = Mac.getInstance(algo);

mac.init(signingKey);

byte[] data = new byte[1024];

int len = 0;

while((len = fis.read(data))>0){

mac.update(data, 0, len);

}

mac.doFinal();

}finally{

fis.close();

}

}

Hash

"MD5", "SHA1", "SHA-256", "SHA-512", "SHA-224", "SHA-384"

public void testHASH(String filePath, String algo) throws Exception{

FileInputStream fis = new FileInputStream(new File(filePath));

try{

MessageDigest md = MessageDigest.getInstance(algo);

byte[] data = new byte[1024];

int len = 0;

while((len = fis.read(data))>0){

md.update(data, 0, len);

}

md.digest();

}finally{

fis.close();

}

}

Signature

"MD5withRSA", "SHA1withRSA", "SHA256withRSA"

public void testSignature(String filePath, String algo,String ali, KeyStore ks, String pin) throws Exception{

FileInputStream fis = new FileInputStream(new File(filePath));

try{

Signature signature = Signature.getInstance(algo, ks.getProvider());

ks.load(null, pin.toCharArray());

PrivateKey pvkey= (PrivateKey)ks.getKey(ali, pin.toCharArray());

if(pvkey==null)

throw new Exception("该容器没有私钥");

signature.initSign(pvkey);

byte[] data = new byte[1024];

int len = 0;

while((len = fis.read(data))>0){

signature.update(data, 0, len);

}

signature.sign();

}finally{

fis.close();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值