Add Home

2025-12-13 21:58:59 +00:00
commit 6a3040b189

29
Home.md Normal file

@@ -0,0 +1,29 @@
# mac-kt
`mac-kt` is a Kotlin Multiplatform library that provides common MAC implementations.
Supported MACs:
- HMAC
## Targets
| Target | Status |
|------------------|---------------|
| JVM | Supported |
| JavaScript | Supported |
| Native (Linux) | Supported |
| Native (Windows) | Not Supported |
## Installation
Add the following to your `build.gradle.kts`.
```kotlin
repositories {
maven("https://git.infendro.com/api/packages/Infendro/maven")
}
dependencies {
implementation("com.infendro:mac:1.2.0")
}
```