#To Decrypt Jenkins Password from credentials.xml
#jenkins
#your-sercret-hash-S0SKVKUuFfUfrY3UhhUC3J
#go to the jenkins url
http://jenkins-host/script
#In the console paste the script
hashed_pw='your-sercret-hash-S0SKVKUuFfUfrY3UhhUC3J'
passwd = hudson.util.Secret.decrypt(hashed_pw)
println(passwd)