When use the encrypted arithmetic to encrypt some files.we can use the method create by MessageDigest:
package com.CAHelper;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MyTest {
public static void main(String args[]){
String info = "This is my test info: Hello World";
try {
MessageDigest digester = MessageDigest.getInstance("SHA-1");
System.out.println("Method is :"+digester.getAlgorithm());
digester.update(info.getBytes());
byte[] digeByte = digester.digest();
System.out.println("Info is :"+byte2hex(digeByte));
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static String byte2hex(byte[] b){
String hs = "";
String stemp = "";
System.out.println(b.length);
for(int i=0;i<b.length;i++){
stemp = Integer.toHexString(b[i]);
if(stemp.length()==1){
hs = hs +"0"+stemp;
}else{
hs = hs + stemp;
}
if(i<b.length-1){
hs = hs+":";
}
}
return stemp.toUpperCase();
}
}
分享到:
相关推荐
在本资源"springboot_expample_02.zip"中,我们深入探讨了Spring Boot框架的应用,特别是关于Controller的实现以及如何配置Spring MVC。这个压缩包包含了一个简单的Spring Boot项目示例,通过它我们可以学习到一些...
在这个名为 "springboot_expample_03" 的项目中,SpringBoot 和 Spring Data JPA 被整合起来,以便与 MySQL 数据库进行交互。Spring Data JPA 提供了一种声明式的方式来执行 CRUD(创建、读取、更新和删除)操作,...
在这个名为 "springboot_expample_01.zip" 的压缩包中,我们有一个简单的 SpringBoot HelloWorld 示例项目。该项目被设计得非常简洁,目的是为了展示如何最小化地配置和启动一个 SpringBoot 项目。这通常包括以下几...
在本项目“springboot_expample_04.zip”中,开发者已经集成SpringBoot Data JPA和MongoDB,创建了一个可以正常运行的示例应用。接下来,我们将深入探讨这两个关键组件以及它们如何协同工作。 首先,SpringBoot ...
关于项目这是库存管理系统。 我们可以为雇员支付薪水。 使用时可以购买一些产品,然后...如何安装服务器作曲家更新npm安装cp .env.expample .env PHP的工匠键:生成env文件更改您的数据库名称PHP的工匠迁移PHP工匠服务
.env.expampleファイルをコピーして.envファイルを作成してください。 cp .env.example .env 作成した.envファイルを编集して必要な设定をしましょう。 特にWordPressのユーザー名,パスワード,メールアドレスを...