tech.inner.hawk.bewit.HawkCredentials.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawkish-bewit Show documentation
Show all versions of hawkish-bewit Show documentation
Signed URLs using Hawk Bewits
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"),
}
}