mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-12-11 16:55:40 +00:00
8 lines
282 B
Kotlin
8 lines
282 B
Kotlin
package dev.inmo.tgbotapi.webapps
|
|
|
|
import dev.inmo.micro_utils.crypto.CryptoJs
|
|
|
|
fun CryptoJs.HmacSHA256(text: String, key: String) = this.asDynamic().HmacSHA256(text, key).unsafeCast<String>()
|
|
|
|
fun CryptoJs.hex(text: String) = this.asDynamic().format.Hex(text).unsafeCast<String>()
|