Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreypfau/kotlinx-crypto
A multiplatform Kotlin library providing basic cryptographic functions and primitives
https://github.com/andreypfau/kotlinx-crypto
blake2 crc32 crypto cryptography hmac keccak kotlin kotlin-language kotlin-library kotlin-multiplatform pbkdf2 poly1305 salsa20 sha256 sha512
Last synced: 17 days ago
JSON representation
A multiplatform Kotlin library providing basic cryptographic functions and primitives
- Host: GitHub
- URL: https://github.com/andreypfau/kotlinx-crypto
- Owner: andreypfau
- License: apache-2.0
- Created: 2023-12-09T09:17:01.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T14:50:33.000Z (6 months ago)
- Last Synced: 2024-05-03T17:53:23.923Z (6 months ago)
- Topics: blake2, crc32, crypto, cryptography, hmac, keccak, kotlin, kotlin-language, kotlin-library, kotlin-multiplatform, pbkdf2, poly1305, salsa20, sha256, sha512
- Language: Kotlin
- Homepage:
- Size: 252 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kotlin/Multiplatform Crypto
[![Maven Central](https://img.shields.io/maven-central/v/io.github.andreypfau/kotlinx-crypto-digest.svg)](https://search.maven.org/artifact/io.github.andreypfau/kotlinx-crypto-digest)
[![License](https://img.shields.io/github/license/andreypfau/kotlinx-crypto?color=blue)](https://github.com/andreypfau/kotlinx-crypto/blob/main/LICENSE)
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin)](http://kotlinlang.org)**A multiplatform Kotlin library providing basic cryptographic functions and primitives**
### Gradle Kotlin DSL:
```kotlin
repositories {
mavenCentral()
}val kotlinxCryptoVersion = "0.0.4"
dependencies {
implementation("io.github.andreypfau:kotlinx-crypto-aes:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-blake2:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-crc32:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-hmac:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-keccak:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-pbkdf2:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-poly1305:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-salsa20:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-sha1:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-sha2:$kotlinxCryptoVersion")
}
```