
me.saro.jwt.alg.hs.JwtHs512.kt Maven / Gradle / Ivy
package me.saro.jwt.alg.hs
import javax.crypto.Mac
class JwtHs512: JwtHs() {
override fun getKeyAlgorithm(): String = "HmacSHA512"
override fun getMac(): Mac = Mac.getInstance(getKeyAlgorithm())
override fun algorithm(): String = "HS512"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy