java sha1加密ascii码_请问下面java的Sha1加密在c#中对应要怎么写?

/**

* 读取指定文件块数据Sha1

*

* @param fis

* @return

*/

private static MessageDigest calSha1(BufferedInputStream fis) {

MessageDigest sha1 = null;

try {

byte[] buffer = new byte[1024];

int numRead = 0;

int total = 0;

sha1 = MessageDigest.getInstance("SHA-1");

while ((numRead = fis.read(buffer)) > 0) {

sha1.update(buffer, 0, numRead);

total += numRead;

if (total >= BLOCK_SIZE) {//每次最多读入4M

break;

}

}

} catch (Exception e) {

e.printStackTrace();

}

return sha1;

}

/**

* 获取hash/etag,根据File文件计算hash值

*

* @param file 文件

* @return

*/

public static String getEtagHash(File file) {

String etagHash = null;

BufferedInputStream fis = null;

try {

if (file.exists()) {

byte[] ret = new byte[21];

long blockCount = blockCount(file.length());

fis = new BufferedInputStream(new FileInputStream(file));

if (blockCount <= 1) { // 文件块数小于等于1块

MessageDigest sha1 = calSha1(fis);

if (null != sha1) {

byte[] input = sha1.digest();

ret[0] = BYTE_LOW_4;

for (int i = 0; i < 20; ++i) {//SHA1算法位20字节

ret[i + 1] = input[i];

}

}

} else {//将所有sha1值按切块顺序拼接

byte[] rec = new byte[(int) blockCount * 20];

ret[0] = BYTE_OVER_4;

int i, cnt = 0;

for (i = 0; i < blockCount; i++) {//每块文件分别计算sha1

MessageDigest sha1 = calSha1(fis);

if (null != sha1) {

byte[] tmp = sha1.digest();

for (int j = 0; j < 20; j++) {

rec[cnt++] = tmp[j];

}

}

}

MessageDigest sha1 = MessageDigest.getInstance("SHA-1");//对拼接好的数据再做sha1计算

sha1.update(rec, 0, (int) blockCount * 20);

byte[] tmp = sha1.digest();

for (i = 0; i < 20; ++i) {//在最前面拼上单个字节,值为0x96

ret[i + 1] = tmp[i];

}

}

etagHash = EncodeUtils.urlsafeEncodeString(ret);

} else {

System.out.println("File[" + file.getAbsolutePath() + "] Not Exist,Cannot Calculate Hash!");

}

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

if (fis != null) {

fis.close();

fis = null;

}

} catch (IOException e) {

e.printStackTrace();

}

}

return etagHash;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值