11
9

More than 5 years have passed since last update.

ScalaでMD5ハッシュ値を求めたい

Posted at
def md5(text: String): String = {
  java.security.MessageDigest.getInstance("MD5").digest(text.getBytes).map("%02x".format(_)).mkString
}
11
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
9