How to hash a string with SHA-256 in Ruby

1 Answer

0 votes
require "digest"

def sha256(input)
  Digest::SHA256.hexdigest(input)
end

input = "Ruby programming language"
hash  = sha256(input)

puts hash


# run:
#
# c5bc2c603a985f00121f2af38279adec5ab998f8cd3ab9db5e15218f50795b8c
#   

 



answered May 2 by avibootz
...