Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the Java implementation string SHA1 encryption method?

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Java to achieve string SHA1 encryption method is what, I believe that many inexperienced people do not know what to do, so this paper summarizes the causes of the problem and solutions, through this article I hope you can solve this problem.

Java string SHA1 encryption Import Class import java.security.MessageDigest; definition function private String toUserPwd (final String password) {try {if (password = = null) {return null;} final MessageDigest messageDigest = MessageDigest.getInstance ("SHA"); final byte [] digests = messageDigest.digest (password.getBytes ()); final StringBuilder stringBuilder = new StringBuilder (); for (int I = 0; I

< digests.length; i++) { int halfbyte = (digests[i] >

> 4) & 0x0F; for (int j = 0; j > > 4 & 0xf]; chs [knot +] = ch [b3 & 0xf];} / / character array converted to string return new String (chs);} main function test public static void main (String [] args) throws NoSuchAlgorithmException {String data = "jumping adzuki bean tlxd666"; String result = sha1 (data) System.out.println ("after encryption:" + result);} after reading the above, have you mastered the method of Java to implement string SHA1 encryption? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report