Last active
March 2, 2022 20:51
-
-
Save AravindaM/795ad9c9f0575fcde07805731790f69c to your computer and use it in GitHub Desktop.
Generate HMAC using SHA256 in Scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.crypto.Mac | |
import javax.crypto.spec.SecretKeySpec | |
Object HMACgen { | |
def generateHMAC(sharedSecret: String, preHashString: String): String = { | |
val secret = new SecretKeySpec(sharedSecret.getBytes, "SHA256") //Crypto Funs : 'SHA256' , 'HmacSHA1' | |
val mac = Mac.getInstance("SHA256") | |
mac.init(secret) | |
val hashString: Array[Byte] = mac.doFinal(preHashString.getBytes) | |
new String(hashString.map(_.toChar)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is it possible to generateHMAC without a sharedSecret?