1 Nisan 2019 Pazartesi

DigestUtils Sınıfı

md metodu
Örnek
Şöyle yaparız
String MD5 = DigestUtils.md2Hex("123");
System.out.println("md5:" + MD5);

String sha256Hex = DigestUtils.sha256Hex("123");
System.out.println("sha256:" + sha256Hex);
sha256Hex metodu
Şöyle yaparız.
String data = "hello world";

// Generate the Sha256 hash using Apache Common Codec library
String hash = DigestUtils.sha256Hex( data);
Çıktı olarak şunu alırız.
Apache : Sha256hash: b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9

Hiç yorum yok:

Yorum Gönder