[Java] Lập trình mạng mã hóa bằng MD5

Thảo luận trong 'Java' bắt đầu bởi Nguyễn Thành Đạt It, 5/11/17.

  1. Nguyễn Thành Đạt It

    Nguyễn Thành Đạt It Guest Registered

    Tham gia ngày:
    28/9/16
    Bài viết:
    435
    Đã được thích:
    4
    Điểm thành tích:
    18
    Giới tính:
    Nam
    Nghề nghiệp:
    N/A
    Nơi ở:
    N/A
    Web:
    N/A

    Hướng dẫn làm bài
    Bước 1: Tạo
    upload_2017-11-5_20-34-54.png

    upload_2017-11-5_20-35-42.png
    Bước 2 : nhập code
    CODE:
    Select All
    package demomd5;

    import java.io.UnsupportedEncodingException;
    import java.math.BigInteger;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;

    public class 
    MD5{
    public static 
    String encrypt(String srcTextthrows UnsupportedEncodingExceptionNoSuchAlgorithmException
    {
        
    MessageDigest msd MessageDigest.getInstance("MD5");
        
    byte[] srcTextBytes srcText.getBytes("UTF-8");
        
    byte[] enrTextBytes msd.digest(srcTextBytes);
        
    BigInteger bigInt = new BigInteger(1enrTextBytes);
        
    String enrText;
        
    enrText bigInt.toString(16);
        return 
    enrText;
    }
    }
    upload_2017-11-5_20-51-4.png

    Bước 3: Tạo tiếp JavaSecurity

    upload_2017-11-5_20-43-43.png

    upload_2017-11-5_20-44-54.png

    Bước 4: nhập code
    CODE:
    Select All
    package demomd5;
    import java.io.UnsupportedEncodingException;
    import java.security.NoSuchAlgorithmException;

    public class 
    JavaSecurity
    {
    public static 
    void main(String[] argsthrows NoSuchAlgorithmExceptionUnsupportedEncodingException
    {
            
    String srcText"Mua 1000 cổ phiếu ";
                
    String enrText Demomd5.encrypt(srcText);
        
    System.out.println("Source Text:"+srcText);
        
    System.out.println("Encrypt Text:"+enrText);
    }
    }
    upload_2017-11-5_20-46-16.png

    Kết quả:
    run file JavaSecurity

    upload_2017-11-5_20-47-59.png

    upload_2017-11-5_20-48-48.png
     

    Bình Luận Bằng Facebook

    data-href="https://cnttqn.com/threads/java-lap-trinh-mang-ma-hoa-bang-md5.5040.html"