All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.inner.hawk.bewit.HawkCredentials.kt Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package tech.inner.hawk.bewit

data class HawkCredentials(val keyId: String, val key: String, val algorith: Algorithm) {
  enum class Algorithm(val jceAlgorithName: String) {
    SHA1("HmacSHA1"),
    SHA256("HmacSHA256"),
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy