Update Home

2026-01-29 16:42:23 +00:00
committed by Gitea
parent d6cafcaae0
commit 1b17f2bc38

13
Home.md

@@ -1,19 +1,10 @@
# mac-kt # mac-kt
`mac-kt` is a Kotlin Multiplatform library that provides common [Message Authentication Code](https://en.wikipedia.org/wiki/Message_authentication_code) algorithms. `mac-kt` is a Kotlin Multiplatform library that provides common [Message Authentication Codes](https://en.wikipedia.org/wiki/Message_authentication_code).
Supported algorithms: Supported algorithms:
- HMAC - HMAC
## Targets
| Target | Status |
|------------------|---------------|
| JVM | Supported |
| JavaScript | Supported |
| Native (Linux) | Supported |
| Native (Windows) | Not Supported |
## Installation ## Installation
Add the following to your `build.gradle.kts`. Add the following to your `build.gradle.kts`.
@@ -24,6 +15,6 @@ repositories {
} }
dependencies { dependencies {
implementation("com.infendro:mac:1.2.0") implementation("com.infendro:mac:1.3.0")
} }
``` ```